home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / htslib.c < prev    next >
C/C++ Source or Header  |  2002-11-17  |  119KB  |  4,348 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Subroutines                                            */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. // Fichier librairie .c
  38.  
  39. #include "htslib.h"
  40. #include "htsbauth.h"
  41.  
  42. /* specific definitions */
  43. #include "htsbase.h"
  44. #include "htsnet.h"
  45. #include "htsbauth.h"
  46. #include "htsthread.h"
  47. #include "htsnostatic.h"
  48. #include "htswrap.h"
  49. #include <stdio.h>
  50. #if HTS_WIN
  51. #include <direct.h>
  52. #else
  53. #if HAVE_UNISTD_H
  54. #include <unistd.h>
  55. #endif
  56. #endif
  57. #include <stdlib.h>
  58. #include <string.h>
  59. #include <time.h>
  60. #include <sys/timeb.h>
  61. #include <fcntl.h>
  62. // pour utimbuf
  63. #if HTS_WIN
  64. #include <sys/utime.h>
  65. #else
  66. #include <utime.h>
  67. #endif
  68. /* END specific definitions */
  69.  
  70.  
  71.  
  72. // DΘbuggage de contr⌠le
  73. #if HTS_DEBUG_CLOSESOCK
  74. #define _HTS_WIDE 1
  75. #endif
  76. #if HTS_WIDE_DEBUG
  77. #define _HTS_WIDE 1
  78. #endif
  79. #if _HTS_WIDE
  80. FILE* DEBUG_fp=NULL;
  81. #define DEBUG_W(A)  { if (DEBUG_fp==NULL) DEBUG_fp=fopen("bug.out","wb"); fprintf(DEBUG_fp,":>"A); fflush(DEBUG_fp); }
  82. #define DEBUG_W2(A) { if (DEBUG_fp==NULL) DEBUG_fp=fopen("bug.out","wb"); fprintf(DEBUG_fp,A); fflush(DEBUG_fp); }
  83. #endif
  84.  
  85. /* variables globales */
  86. int _DEBUG_HEAD;
  87. FILE* ioinfo;
  88.  
  89. #if HTS_USEOPENSSL
  90.  SSL_CTX *openssl_ctx = NULL;
  91. #endif
  92. int IPV6_resolver = 0;
  93.  
  94.  
  95. /* dΘtection complΘmentaire */
  96. const char hts_detect[][32] = {
  97.   "archive",
  98.   "background",
  99.   "data",         // OBJECT
  100.   "dynsrc",
  101.   "lowsrc",
  102.   "profile",      // element META
  103.   "src",
  104.   "swurl",
  105.   "url",
  106.   "usemap",
  107.   "longdesc",     // accessibility
  108.   "xlink:href",   // xml/svg tag
  109.   ""
  110. };
  111.  
  112. /* dΘtecter dΘbut */
  113. const char hts_detectbeg[][32] = {
  114.   "hotspot",      /* hotspot1=..,hotspot2=.. */
  115.   ""
  116. };
  117.  
  118. /* ne pas dΘtcter de liens dedans */
  119. const char hts_nodetect[][32] = {
  120.   "accept-charset",
  121.   "accesskey",
  122.   "action",
  123.   "align",
  124.   "alt",
  125.   "axes",
  126.   "axis",
  127.   "char",
  128.   "charset",
  129.   "cite",
  130.   "class",
  131.   "classid",
  132.   "code",
  133.   "color",
  134.   "datetime",
  135.   "dir",
  136.   "enctype",
  137.   "face",
  138.   "height",
  139.   "id",
  140.   "lang",
  141.   "language",
  142.   "media",
  143.   "method",
  144.   "name",
  145.   "prompt",
  146.   "scheme",
  147.   "size",
  148.   "style",
  149.   "target",
  150.   "title",
  151.   "type",
  152.   "valign",
  153.   "version",
  154.   "width",
  155.   ""
  156. };
  157.  
  158.  
  159. /* dΘtection de mini-code javascript */
  160. /* ALSO USED: detection based on the name: onXXX="<tag>" where XXX starts with upper case letter */
  161. const char hts_detect_js[][32] = {
  162.   "onAbort",
  163.   "onBlur",
  164.   "onChange",
  165.   "onClick",
  166.   "onDblClick",
  167.   "onDragDrop",
  168.   "onError",
  169.   "onFocus",
  170.   "onKeyDown",
  171.   "onKeyPress",
  172.   "onKeyUp",
  173.   "onLoad",
  174.   "onMouseDown",
  175.   "onMouseMove",
  176.   "onMouseOut",
  177.   "onMouseOver",
  178.   "onMouseUp",
  179.   "onMove",
  180.   "onReset",
  181.   "onResize",
  182.   "onSelect",
  183.   "onSubmit",
  184.   "onUnload",
  185.   ""
  186. };
  187.  
  188. /* dΘtection "...URL=<url>" */
  189. const char hts_detectURL[][32] = {
  190.   "content",
  191.   ""
  192. };
  193.  
  194. /* tags o∙ l'URL doit Ωtre rΘΘcrite mais non capturΘe */
  195. const char hts_detectandleave[][32] = {
  196.   "action",
  197.   ""
  198. };
  199.  
  200. /* ne pas renommer les types renvoyΘs (souvent types inconnus) */
  201. const char hts_mime_keep[][32] = {
  202.   "application/octet-stream",
  203.   "text/plain",
  204.   ""
  205. };
  206.  
  207. /* pas de type mime connu, mais extension connue */
  208. const char hts_ext_dynamic[][32] = {
  209.   "php3",
  210.   "php",
  211.   "php4",
  212.   "php2",
  213.   "cgi",
  214.   "asp",
  215.   "jsp",
  216.   "pl",
  217.   /*"exe",*/
  218.   "cfm",
  219.   ""
  220. };
  221.  
  222. /* types MIME */
  223. const char hts_mime[][2][32] = {
  224.   {"application/acad","dwg"},
  225.   {"application/arj","arj"},
  226.   {"application/clariscad","ccad"},
  227.   {"application/drafting","drw"},
  228.   {"application/dxf","dxf"},
  229.   {"application/excel","xls"},
  230.   {"application/i-deas","unv"},
  231.   {"application/iges","isg"},
  232.   {"application/iges","iges"},
  233.   {"application/mac-binhex40","hqx"},
  234.   {"application/mac-compactpro","cpt"},
  235.   {"application/msword","doc"},
  236.   {"application/msword","w6w"},
  237.   {"application/msword","word"},
  238.   {"application/mswrite","wri"},
  239.   /*{"application/octet-stream","dms"},*/
  240.   /*{"application/octet-stream","lzh"},*/
  241.   /*{"application/octet-stream","lha"},*/
  242.   /*{"application/octet-stream","bin"},*/
  243.   {"application/oda","oda"},
  244.   {"application/pdf","pdf"},
  245.   {"application/postscript","ps"},
  246.   {"application/postscript","ai"},
  247.   {"application/postscript","eps"},
  248.   {"application/powerpoint","ppt"},
  249.   {"application/pro_eng","prt"},
  250.   {"application/pro_eng","part"},
  251.   {"application/rtf","rtf"},
  252.   {"application/set","set"},
  253.   {"application/sla","stl"},
  254.   {"application/smil","smi"},
  255.   {"application/smil","smil"},
  256.   {"application/smil","sml"},
  257.   {"application/solids","sol"},
  258.   {"application/STEP","stp"},
  259.   {"application/STEP","step"},
  260.   {"application/vda","vda"},
  261.   {"application/x-authorware-map","aam"},     
  262.   {"application/x-authorware-seg","aas"},
  263.   {"application/x-authorware-bin","aab"},
  264.   {"application/x-cocoa","cco"},
  265.   {"application/x-csh","csh"},
  266.   {"application/x-director","dir"},
  267.   {"application/x-director","dcr"},
  268.   {"application/x-director","dxr"},
  269.   {"application/x-mif","mif"},
  270.   {"application/x-dvi","dvi"},
  271.   {"application/x-gzip","gz"},
  272.   {"application/x-gzip","gzip"},
  273.   {"application/x-hdf","hdf"},
  274.   {"application/x-javascript","js"},
  275.   {"application/x-koan","skp"},
  276.   {"application/x-koan","skd"},
  277.   {"application/x-koan","skt"},
  278.   {"application/x-koan","skm"},
  279.   {"application/x-latex","latex"},
  280.   {"application/x-netcdf","nc"},
  281.   {"application/x-netcdf","cdf"},
  282.   /* {"application/x-sh","sh"}, */
  283.   /* {"application/x-csh","csh"}, */
  284.   /* {"application/x-ksh","ksh"}, */
  285.   {"application/x-shar","shar"},
  286.   {"application/x-stuffit","sit"},
  287.   {"application/x-tcl","tcl"},
  288.   {"application/x-tex","tex"},
  289.   {"application/x-texinfo","texinfo"},
  290.   {"application/x-texinfo","texi"},
  291.   {"application/x-troff","t"},
  292.   {"application/x-troff","tr"},
  293.   {"application/x-troff","roff"},
  294.   {"application/x-troff-man","man"},
  295.   {"application/x-troff-me","ms"},
  296.   {"application/x-wais-source","src"},
  297.   {"application/zip","zip"},
  298.   {"application/x-zip-compressed","zip"},
  299.   {"application/x-bcpio","bcpio"},
  300.   {"application/x-cdlink","vcd"},
  301.   {"application/x-cpio","cpio"},
  302.   {"application/x-gtar","tgz"},
  303.   {"application/x-gtar","gtar"},
  304.   {"application/x-shar","shar"},
  305.   {"application/x-shockwave-flash","swf"},
  306.   {"application/x-sv4cpio","sv4cpio"},
  307.   {"application/x-sv4crc","sv4crc"},
  308.   {"application/x-tar","tar"},
  309.   {"application/x-ustar","ustar"},
  310.   {"application/x-winhelp","hlp"},
  311.   {"audio/midi","mid"},
  312.   {"audio/midi","midi"},
  313.   {"audio/midi","kar"},
  314.   {"audio/mpeg","mp3"},
  315.   {"audio/mpeg","mpga"},
  316.   {"audio/mpeg","mp2"},
  317.   {"audio/basic","au"},
  318.   {"audio/basic","snd"},
  319.   {"audio/x-aiff","aif"},
  320.   {"audio/x-aiff","aiff"},
  321.   {"audio/x-aiff","aifc"},
  322.   {"audio/x-pn-realaudio","rm"},
  323.   {"audio/x-pn-realaudio","ram"},
  324.   {"audio/x-pn-realaudio","ra"},
  325.   {"audio/x-pn-realaudio-plugin","rpm"},
  326.   {"audio/x-wav","wav"},
  327.   {"chemical/x-pdb","pdb"},
  328.   {"chemical/x-pdb","xyz"},
  329.   {"drawing/x-dwf","dwf"},
  330.   {"image/gif","gif"},
  331.   {"image/ief","ief"},
  332.   {"image/jpeg","jpg"},
  333.   {"image/jpeg","jpe"},
  334.   {"image/jpeg","jpeg"},
  335.   {"image/pict","pict"},
  336.   {"image/png","png"},
  337.   {"image/tiff","tiff"},
  338.   {"image/tiff","tif"},
  339.   {"image/svg+xml","svg"},
  340.   {"image/svg-xml","svg"},
  341.   {"image/x-cmu-raster","ras"},
  342.   {"image/x-freehand","fh4"},
  343.   {"image/x-freehand","fh7"},
  344.   {"image/x-freehand","fh5"},  
  345.   {"image/x-freehand","fhc"},
  346.   {"image/x-freehand","fh"},   
  347.   {"image/x-portable-anymap","pnm"},
  348.   {"image/x-portable-bitmap","pgm"},
  349.   {"image/x-portable-pixmap","ppm"},
  350.   {"image/x-rgb","rgb"},
  351.   {"image/x-xbitmap","xbm"},
  352.   {"image/x-xpixmap","xpm"},
  353.   {"image/x-xwindowdump","xwd"},
  354.   {"model/mesh","msh"},  
  355.   {"model/mesh","mesh"},  
  356.   {"model/mesh","silo"},  
  357.   {"multipart/x-zip","zip"},
  358.   {"multipart/x-gzip","gzip"},
  359.   {"text/css","css"},
  360.   {"text/html","html"},
  361.   {"text/html","htm"},
  362.   {"text/plain","txt"},
  363.   {"text/plain","g"},
  364.   {"text/plain","h"},
  365.   {"text/plain","c"},
  366.   {"text/plain","cc"},
  367.   {"text/plain","hh"},
  368.   {"text/plain","m"},
  369.   {"text/plain","f90"},
  370.   {"text/richtext","rtx"},
  371.   {"text/tab-separated-values","tsv"},
  372.   {"text/x-setext","etx"},
  373.   {"text/x-sgml","sgml"},
  374.   {"text/x-sgml","sgm"},
  375.   {"text/xml","xml"},  
  376.   {"text/xml","dtd"},  
  377.   {"video/mpeg","mpeg"},
  378.   {"video/mpeg","mpg"},
  379.   {"video/mpeg","mpe"},
  380.   {"video/quicktime","qt"},
  381.   {"video/quicktime","mov"},
  382.   {"video/x-msvideo","avi"},
  383.   {"video/x-sgi-movie","movie"},
  384.   {"x-conference/x-cooltalk","ice"},
  385.   /*{"application/x-httpd-cgi","cgi"},*/
  386.   {"x-world/x-vrml","wrl"},
  387.   
  388.   {"*","class"},
  389.   
  390.   {"",""}};
  391.  
  392.  
  393. // Reserved (RFC2396)
  394. #define CHAR_RESERVED(c)  ( strchr(";/?:@&=+$,",(unsigned char)(c)) != 0 )
  395. // Delimiters (RFC2396)
  396. #define CHAR_DELIM(c)     ( strchr("<>#%\"",(unsigned char)(c)) != 0 )
  397. // Unwise (RFC2396)
  398. #define CHAR_UNWISE(c)    ( strchr("{}|\\^[]`",(unsigned char)(c)) != 0 )
  399. // Special (escape chars) (RFC2396 + >127 )
  400. #define CHAR_LOW(c)       ( ((unsigned char)(c) <= 31) )
  401. #define CHAR_HIG(c)       ( ((unsigned char)(c) >= 127) )
  402. #define CHAR_SPECIAL(c)   ( CHAR_LOW(c) || CHAR_HIG(c) )
  403. // We try to avoid them and encode them instead
  404. #define CHAR_XXAVOID(c)   ( strchr(" *'\"!",(unsigned char)(c)) != 0 )
  405.  
  406.  
  407. // conversion Θventuelle / vers antislash
  408. #if HTS_WIN
  409. char* antislash(char* s) {
  410.   char* buff;
  411.   char* a;
  412.   NOSTATIC_RESERVE(buff, char, HTS_URLMAXSIZE*2);
  413.  
  414.   strcpybuff(buff,s);
  415.   while(a=strchr(buff,'/')) *a='\\';
  416.   return buff;
  417. }
  418. #endif
  419.  
  420.  
  421.  
  422. // RΘcupΘration d'un fichier http sur le net.
  423. // Renvoie une adresse sur le bloc de mΘmoire, ou bien
  424. // NULL si un retour.msgeur (buffer retour.msg) est survenue. 
  425. //
  426. // Une adresse de structure htsmsg peut Ωtre transmise pour
  427. // suivre l'Θvolution du chargement si le process a ΘtΘ lancΘ 
  428. // en background
  429.  
  430. htsblk httpget(char* url) {
  431.   char adr[HTS_URLMAXSIZE*2];   // adresse
  432.   char fil[HTS_URLMAXSIZE*2];   // chemin
  433.   
  434.   // sΘparer URL en adresse+chemin
  435.   if (ident_url_absolute(url,adr,fil)==-1) {
  436.     htsblk retour;
  437.     memset(&retour, 0, sizeof(htsblk));    // effacer
  438.     // retour prΘdΘfini: erreur
  439.     retour.adr=NULL;
  440.     retour.size=0;
  441.     retour.msg[0]='\0';
  442.     retour.statuscode=-1;    
  443.     strcpybuff(retour.msg,"Error invalid URL");
  444.     return retour;
  445.   }
  446.   
  447.   return xhttpget(adr,fil);
  448. }
  449.  
  450. // ouvre une liaison http, envoie une requΦte GET et rΘceptionne le header
  451. // retour: socket
  452. int http_fopen(char* adr,char* fil,htsblk* retour) {
  453.   //                / GET, traiter en-tΩte
  454.   return http_xfopen(0,1,1,NULL,adr,fil,retour);
  455. }
  456.  
  457. // ouverture d'une liaison http, envoi d'une requΦte
  458. // mode: 0 GET  1 HEAD  [2 POST]
  459. // treat: traiter header?
  460. // waitconnect: attendre le connect()
  461. // note: dans retour, on met les params du proxy
  462. int http_xfopen(int mode,int treat,int waitconnect,char* xsend,char* adr,char* fil,htsblk* retour) {
  463.   //htsblk retour;
  464.   //int bufl=TAILLE_BUFFER;    // 8Ko de buffer
  465.   T_SOC soc=INVALID_SOCKET;
  466.   //char *p,*q;
  467.   
  468.   // retour prΘdΘfini: erreur
  469.   if (retour) {
  470.     retour->adr=NULL;
  471.     retour->size=0;
  472.     retour->msg[0]='\0';
  473.     retour->statuscode=-5;          // a priori erreur non fatale
  474.   }
  475.  
  476. #if HDEBUG
  477.   printf("adr=%s\nfichier=%s\n",adr,fil);
  478. #endif
  479.   
  480.   // ouvrir liaison
  481. #if HDEBUG
  482.   printf("CrΘation d'une socket sur %s\n",adr);
  483. #endif
  484.  
  485. #if CNXDEBUG
  486.   printf("..newhttp\n");
  487. #endif
  488.  
  489.   /* connexion */
  490.   if (retour) {
  491.     if ( (!(retour->req.proxy.active)) 
  492.       ||
  493.       (
  494.         (strcmp(adr,"file://")==0) 
  495.         ||
  496.         (strncmp(adr,"https://", 8)==0) 
  497.       )
  498.       ) {    /* pas de proxy, ou non utilisable ici */
  499.       soc=newhttp(adr,retour,-1,waitconnect);
  500.     } else {
  501.       soc=newhttp(retour->req.proxy.name,retour,retour->req.proxy.port,waitconnect);  // ouvrir sur le proxy α la place
  502.     }
  503.   } else {
  504.     soc=newhttp(adr,NULL,-1,waitconnect);    
  505.   }
  506.  
  507.   // copier index socket retour
  508.   if (retour) retour->soc=soc;
  509.  
  510.   /* Check for errors */
  511.   if (soc == INVALID_SOCKET) {
  512.     if (retour) {
  513.       if (retour->msg) {
  514.         if (!strnotempty(retour->msg)) {
  515.           strcpybuff(retour->msg,"Connect error");
  516.         }
  517.       }
  518.     }
  519.   }
  520.  
  521.   // --------------------
  522.   // court-circuit (court circuite aussi le proxy..)
  523.   // LOCAL_SOCKET_ID est une pseudo-socket locale
  524.   if (soc==LOCAL_SOCKET_ID) {
  525.     retour->is_file=1;  // fichier local
  526.     if (mode==0) {    // GET
  527.  
  528.       // Test en cas de file:///C|...
  529.       if (!fexist(fconv(unescape_http(fil))))
  530.         if (fexist(fconv(unescape_http(fil+1)))) {
  531.           char tempo[HTS_URLMAXSIZE*2];
  532.           strcpybuff(tempo,fil+1);
  533.           strcpybuff(fil,tempo);
  534.         }
  535.  
  536.       // Ouvrir
  537.       retour->totalsize=fsize(fconv(unescape_http(fil)));  // taille du fichier
  538.       retour->msg[0]='\0';
  539.       soc=INVALID_SOCKET;
  540.       if (retour->totalsize<0)
  541.         strcpybuff(retour->msg,"Unable to open file");
  542.       else if (retour->totalsize==0)
  543.         strcpybuff(retour->msg,"File empty");
  544.       else {
  545.         // Note: On passe par un FILE* (plus propre)
  546.         //soc=open(fil,O_RDONLY,0);    // en lecture seule!
  547.         retour->fp=fopen(fconv(unescape_http(fil)),"rb");  // ouvrir
  548.         if (retour->fp==NULL)
  549.           soc=INVALID_SOCKET;
  550.         else
  551.           soc=LOCAL_SOCKET_ID;
  552.       }
  553.       retour->soc=soc;
  554.       if (soc!=INVALID_SOCKET) {
  555.         retour->statuscode=200;   // OK
  556.         strcpybuff(retour->msg,"OK");
  557.         guess_httptype(retour->contenttype,fil);
  558.       } else if (strnotempty(retour->msg)==0)
  559.           strcpybuff(retour->msg,"Unable to open file");
  560.       return soc;  // renvoyer
  561.     } else {    // HEAD ou POST : interdit sur un local!!!! (c'est idiot!)
  562.       strcpybuff(retour->msg,"Unexpected Head/Post local request");
  563.       soc=INVALID_SOCKET;    // erreur
  564.       retour->soc=soc;
  565.       return soc;
  566.     }
  567.   } 
  568.   // --------------------
  569.  
  570.   if (soc!=INVALID_SOCKET) {    
  571.     char rcvd[1100];
  572.     rcvd[0]='\0';
  573. #if HDEBUG
  574.     printf("Ok, connexion rΘussie, id=%d\n",soc);
  575. #endif
  576.     
  577.     // connectΘ?
  578.     if (waitconnect) {
  579.       http_sendhead(NULL,mode,xsend,adr,fil,NULL,NULL,retour);
  580.     } 
  581.     
  582.     if (soc!=INVALID_SOCKET) {
  583.       
  584. #if HDEBUG
  585.       printf("Attente de la rΘponse:\n");
  586. #endif
  587.       
  588.       // si GET (rΘception d'un fichier), rΘceptionner en-tΩte d'abord,
  589.       // et ensuite le corps
  590.       // si POST on ne rΘceptionne rien du tout, c'est aprΦs que l'on fera
  591.       // une rΘception standard pour rΘcupΘrer l'en tΩte
  592.       if ((treat) && (waitconnect)) {  // traiter (attendre!) en-tΩte        
  593.         // RΘception de la status line et de l'en-tΩte (norme RFC1945)
  594.         
  595.         // status-line α rΘcupΘrer
  596.         finput(soc,rcvd,1024);
  597.         if (strnotempty(rcvd)==0)
  598.           finput(soc,rcvd,1024);    // "certains serveurs buggΘs envoient un \n au dΘbut" (RFC)
  599.  
  600.         // traiter status-line
  601.         treatfirstline(retour,rcvd);
  602.  
  603. #if HDEBUG
  604.         printf("Status-Code=%d\n",retour->statuscode);
  605. #endif
  606.         
  607.         // en-tΩte
  608.         
  609.         // header // ** !attention! HTTP/0.9 non supportΘ
  610.         do {
  611.           finput(soc,rcvd,1024);          
  612. #if HDEBUG
  613.           printf(">%s\n",rcvd);      
  614. #endif
  615.           if (strnotempty(rcvd))
  616.             treathead(NULL,NULL,NULL,retour,rcvd);  // traiter
  617.  
  618.         } while(strnotempty(rcvd));
  619.         
  620.         //rcvsize=-1;    // forCER CHARGEMENT INCONNU
  621.         
  622.         //if (retour)
  623.         //  retour->totalsize=rcvsize;
  624.         
  625.       } else { // si GET, on recevra l'en tΩte APRES
  626.         //rcvsize=-1;    // on ne connait pas la taille de l'en-tΩte
  627.         if (retour)
  628.           retour->totalsize=-1;
  629.       }
  630.       
  631.     }
  632.  
  633.   }
  634.     
  635.   return soc;
  636. }
  637.  
  638.  
  639. // envoi d'une requΦte
  640. int http_sendhead(t_cookie* cookie,int mode,char* xsend,char* adr,char* fil,char* referer_adr,char* referer_fil,htsblk* retour) {
  641.   char buff[8192];
  642.   //int use_11=0;     // HTTP 1.1 utilisΘ
  643.   int direct_url=0; // ne pas analyser l'url (exemple: ftp://)
  644.   char* search_tag=NULL;
  645.   buff[0]='\0';
  646.  
  647.   // header Date
  648.   //strcatbuff(buff,"Date: ");
  649.   //time_gmt_rfc822(buff);    // obtenir l'heure au format rfc822
  650.   //sendc("\n");
  651.   //strcatbuff(buff,buff);
  652.  
  653.   // possibilitΘ non documentΘe: >post: et >postfile:
  654.   // si prΘsence d'un tag >post: alors executer un POST
  655.   // exemple: http://www.someweb.com/test.cgi?foo>post:posteddata=10&foo=5
  656.   // si prΘsence d'un tag >postfile: alors envoyer en tΩte brut contenu dans le fichier en question
  657.   // exemple: http://www.someweb.com/test.cgi?foo>postfile:post0.txt
  658.   search_tag=strstr(fil,POSTTOK":");
  659.   if (!search_tag) {
  660.     search_tag=strstr(fil,POSTTOK"file:");
  661.     if (search_tag) {     // postfile
  662.       if (mode==0) {      // GET!
  663.         FILE* fp=fopen(unescape_http(search_tag+strlen(POSTTOK)+5),"rb");
  664.         if (fp) {
  665.           char line[1100];
  666.           char protocol[256],url[HTS_URLMAXSIZE*2],method[256];
  667.           linput(fp,line,1000);
  668.           if (sscanf(line,"%s %s %s",method,url,protocol) == 3) {
  669.             // selon que l'on a ou pas un proxy
  670.             if (retour->req.proxy.active)
  671.               sprintf(buff,"%s http://%s%s %s\r\n",method,adr,url,protocol);
  672.             else
  673.               sprintf(buff,"%s %s %s\r\n",method,url,protocol);
  674.             // lire le reste en brut
  675.             fread(buff+strlen(buff),8000-strlen(buff),1,fp);
  676.           }
  677.           fclose(fp);
  678.         }
  679.       }
  680.     }
  681.   }
  682.   // Fin postfile
  683.   
  684.   if (strnotempty(buff)==0) {    // PAS POSTFILE
  685.     // Type de requΦte?
  686.     if ((search_tag) && (mode==0)) {
  687.       strcatbuff(buff,"POST ");
  688.     } else if (mode==0) {    // GET
  689.       strcatbuff(buff,"GET ");
  690.     } else {  // if (mode==1) {
  691.       if (!retour->req.http11)        // forcer HTTP/1.0
  692.         strcatbuff(buff,"GET ");      // certains serveurs (cgi) buggent avec HEAD
  693.       else
  694.         strcatbuff(buff,"HEAD ");
  695.     }
  696.     
  697.     // si on gΦre un proxy, il faut une Absolute URI: on ajoute avant http://www.adr.dom
  698.     if ( retour->req.proxy.active && (strncmp(adr,"https://", 8) != 0) ) {
  699.       if (!link_has_authority(adr)) {  // default http
  700. #if HDEBUG
  701.         printf("Proxy Use: for %s%s proxy %d port %d\n",adr,fil,retour->req.proxy.name,retour->req.proxy.port);
  702. #endif
  703.         strcatbuff(buff,"http://");
  704.         strcatbuff(buff,jump_identification(adr));
  705.       } else {          // ftp:// en proxy http
  706. #if HDEBUG
  707.         printf("Proxy Use for ftp: for %s%s proxy %d port %d\n",adr,fil,retour->req.proxy.name,retour->req.proxy.port);
  708. #endif
  709.         direct_url=1;             // ne pas analyser user/pass
  710.         strcatbuff(buff,adr);
  711.       }
  712.     } 
  713.     
  714.     // NOM DU FICHIER
  715.     // on slash doit Ωtre prΘsent en dΘbut, sinon attention aux bad request! (400)
  716.     if (*fil!='/') strcatbuff(buff,"/");
  717.     {
  718.       char tempo[HTS_URLMAXSIZE*2];
  719.       tempo[0]='\0';
  720.       if (search_tag)
  721.         strncatbuff(tempo,fil,(int) (search_tag - fil));
  722.       else
  723.         strcpybuff(tempo,fil);
  724.       escape_check_url(tempo);
  725.       strcatbuff(buff,tempo);       // avec Θchappement
  726.     }
  727.     
  728.     // protocole
  729.     if (!retour->req.http11) {     // forcer HTTP/1.0
  730.       //use_11=0;
  731.       strcatbuff(buff," HTTP/1.0\x0d\x0a");
  732.     } else {                   // RequΦte 1.1
  733.       //use_11=1;
  734.       strcatbuff(buff," HTTP/1.1\x0d\x0a");
  735.     }
  736.  
  737.     /* supplemental data */
  738.     if (xsend) strcatbuff(buff,xsend);    // Θventuelles autres lignes
  739.  
  740.     // tester proxy authentication
  741.     if (retour->req.proxy.active) {
  742.       if (link_has_authorization(retour->req.proxy.name)) {  // et hop, authentification proxy!
  743.         char* a=jump_identification(retour->req.proxy.name);
  744.         char* astart=jump_protocol(retour->req.proxy.name);
  745.         char autorisation[1100];
  746.         char user_pass[256];        
  747.         autorisation[0]=user_pass[0]='\0';
  748.         //
  749.         strncatbuff(user_pass,astart,(int) (a - astart) - 1);
  750.         strcpybuff(user_pass,unescape_http(user_pass));
  751.         code64(user_pass,autorisation);
  752.         strcatbuff(buff,"Proxy-Authorization: Basic ");
  753.         strcatbuff(buff,autorisation);
  754.         strcatbuff(buff,H_CRLF);
  755. #if HDEBUG
  756.         printf("Proxy-Authenticate, %s (code: %s)\n",user_pass,autorisation);
  757. #endif
  758.       }
  759.     }
  760.     
  761.     // Referer?
  762.     if ((referer_adr) && (referer_fil)) {       // existe
  763.       if ((strnotempty(referer_adr)) && (strnotempty(referer_fil))) {   // non vide
  764.         if (
  765.           (strcmp(referer_adr,"file://") != 0)
  766.           &&
  767.           (  /* no https referer to http urls */
  768.             (strncmp(referer_adr, "https://", 8) != 0)  /* referer is not https */
  769.             ||
  770.             (strncmp(adr, "https://", 8) == 0)          /* or referer AND addresses are https */
  771.           )
  772.           ) {      // PAS file://
  773.           strcatbuff(buff,"Referer: ");
  774.           strcatbuff(buff,"http://");
  775.           strcatbuff(buff,jump_identification(referer_adr));
  776.           strcatbuff(buff,referer_fil);
  777.           strcatbuff(buff,H_CRLF);
  778.         }
  779.       }
  780.     }
  781.     
  782.     // POST?
  783.     if (mode==0) {      // GET!
  784.       if (search_tag) {
  785.         char clen[256];
  786.         sprintf(clen,"Content-length: %d"H_CRLF,(int)(strlen(unescape_http(search_tag+strlen(POSTTOK)+1))));
  787.         strcatbuff(buff,clen);
  788.       }
  789.     }
  790.     
  791.     // gestion cookies?
  792.     if (cookie) {
  793.       char* b=cookie->data;
  794.       int cook=0;
  795.       int max_cookies=8;
  796.       int max_size=2048;
  797.       max_size+=strlen(buff);
  798.       do {
  799.         b=cookie_find(b,"",jump_identification(adr),fil);       // prochain cookie satisfaisant aux conditions
  800.         if (b) {
  801.           max_cookies--;
  802.           if (!cook) {
  803.             strcatbuff(buff,"Cookie: ");
  804.             strcatbuff(buff,"$Version=1; ");
  805.             cook=1;
  806.           } else
  807.             strcatbuff(buff,"; ");
  808.           strcatbuff(buff,cookie_get(b,5));
  809.           strcatbuff(buff,"=");
  810.           strcatbuff(buff,cookie_get(b,6));
  811.           strcatbuff(buff,"; $Path=");
  812.           strcatbuff(buff,cookie_get(b,2));
  813.           b=cookie_nextfield(b);
  814.         }
  815.       } while( (b) && (max_cookies>0) && ((int)strlen(buff)<max_size));
  816.       if (cook) {                           // on a envoyΘ un (ou plusieurs) cookie?
  817.         strcatbuff(buff,H_CRLF);
  818. #if DEBUG_COOK
  819.         printf("Header:\n%s\n",buff);
  820. #endif
  821.       }
  822.     }
  823.     
  824.     // connection close?
  825.     //if (use_11)     // Si on envoie une requΦte 1.1, prΘciser qu'on ne veut pas de keep-alive!!
  826.     strcatbuff(buff,"Connection: close"H_CRLF);
  827.     
  828.     // gΘrer le keep-alive (garder socket)
  829.     //strcatbuff(buff,"Connection: Keep-Alive\n");
  830.     
  831.     {
  832.       char* real_adr=jump_identification(adr);
  833.       //if ((use_11) || (retour->user_agent_send)) {   // Pour le 1.1 on utilise un Host:
  834.       if (!direct_url) {     // pas ftp:// par exemple
  835.         //if (!retour->req.proxy.active) {
  836.         strcatbuff(buff,"Host: "); strcatbuff(buff,real_adr); strcatbuff(buff,H_CRLF);
  837.         //}
  838.       }
  839.       //}
  840.  
  841.       // PrΘsence d'un user-agent?
  842.       if (retour->req.user_agent_send) {  // ohh un user-agent
  843.         char s[256];
  844.         // HyperTextSeeker/"HTSVERSION
  845.         sprintf(s,"User-Agent: %s"H_CRLF,retour->req.user_agent);
  846.         strcatbuff(buff,s);
  847.         
  848.         // pour les serveurs difficiles
  849.         strcatbuff(buff,"Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, image/svg+xml, */*"H_CRLF);
  850.         if (strnotempty(retour->req.lang_iso)) {
  851.           strcatbuff(buff,"Accept-Language: "); strcatbuff(buff,retour->req.lang_iso); strcatbuff(buff,H_CRLF);
  852.         }
  853.         strcatbuff(buff,"Accept-Charset: iso-8859-1, *"H_CRLF);   
  854.         if (retour->req.http11) {
  855. #if HTS_USEZLIB
  856.           if ((!retour->req.range_used) && (!retour->req.nocompression))
  857.             strcatbuff(buff,"Accept-Encoding: gzip, deflate, compress, identity"H_CRLF);
  858.           else
  859.             strcatbuff(buff,"Accept-Encoding: identity"H_CRLF);       /* no compression */
  860. #else
  861.           strcatbuff(buff,"Accept-Encoding: identity"H_CRLF);         /* no compression */
  862. #endif
  863.         }
  864.       } else {
  865.         strcatbuff(buff,"Accept: */*"H_CRLF);         // le minimum
  866.       }
  867.  
  868.       /* Authentification */
  869.       {
  870.         char autorisation[1100];
  871.         char* a;
  872.         autorisation[0]='\0';
  873.         if (link_has_authorization(adr)) {  // ohh une authentification!
  874.           char* a=jump_identification(adr);
  875.           char* astart=jump_protocol(adr);
  876.           if (!direct_url) {      // pas ftp:// par exemple
  877.             char user_pass[256];
  878.             user_pass[0]='\0';
  879.             strncatbuff(user_pass,astart,(int) (a - astart) - 1);
  880.             strcpybuff(user_pass,unescape_http(user_pass));
  881.             code64(user_pass,autorisation);
  882.             if (strcmp(fil,"/robots.txt"))      /* pas robots.txt */
  883.               bauth_add(cookie,astart,fil,autorisation);
  884.           }
  885.         } else if ( (a=bauth_check(cookie,real_adr,fil)) )
  886.           strcpybuff(autorisation,a);
  887.         /* On a une autorisation a donner?  */
  888.         if (strnotempty(autorisation)) {
  889.           strcatbuff(buff,"Authorization: Basic ");
  890.           strcatbuff(buff,autorisation);
  891.           strcatbuff(buff,H_CRLF);
  892.         }
  893.       }
  894.  
  895.     }
  896.     //strcatbuff(buff,"Accept-Language: en\n");
  897.     //strcatbuff(buff,"Accept-Charset: iso-8859-1,*,utf-8\n");
  898.     
  899.     // CRLF de fin d'en tΩte
  900.     strcatbuff(buff,H_CRLF);
  901.     
  902.     // donnΘes complΘmentaires?
  903.     if (search_tag)
  904.     if (mode==0)      // GET!
  905.       strcatbuff(buff,unescape_http(search_tag+strlen(POSTTOK)+1));
  906.   }
  907.   
  908. #if HDEBUG
  909. #endif
  910.   if (_DEBUG_HEAD) {
  911.     if (ioinfo) {
  912.       fprintf(ioinfo,"request for %s%s:\r\n",jump_identification(adr),fil);
  913.       fprintfio(ioinfo,buff,"<<< ");
  914.       fprintf(ioinfo,"\r\n");
  915.       fflush(ioinfo);
  916.     }
  917.   }  // Fin test pas postfile
  918.   //
  919.  
  920.   // Envoi
  921.   if (sendc(retour, buff)<0) {  // ERREUR, socket rompue?...
  922.   //if (sendc(retour->soc,buff) != strlen(buff)) {  // ERREUR, socket rompue?...
  923.     deletesoc_r(retour);  // fermer tout de mΩme
  924.     // et tenter de reconnecter
  925.     
  926.     strcpybuff(retour->msg,"Broken pipe");
  927.     retour->soc=INVALID_SOCKET;
  928.   }
  929.   
  930.   // RX'98
  931.   return 0;
  932. }
  933.  
  934.  
  935.  
  936.  
  937. // traiter 1ere ligne d'en tΩte
  938. void treatfirstline(htsblk* retour,char* rcvd) {
  939.   char* a=rcvd;
  940.   // exemple:
  941.   // HTTP/1.0 200 OK
  942.   if (*a) {
  943.     // note: certains serveurs buggΘs renvoient HTTP/1.0\n200 OK ou " HTTP/1.0 200 OK"
  944.     while ((*a==' ') || (*a==10) || (*a==13) || (*a==9)) a++;      // Θpurer espaces au dΘbut
  945.     if (strfield(a, "HTTP/")) {
  946.       // sauter HTTP/1.x
  947.       while ((*a!=' ') && (*a!='\0') && (*a!=10) && (*a!=13) && (*a!=9)) a++;   
  948.       if (*a != '\0') {
  949.         while ((*a==' ') || (*a==10) || (*a==13) || (*a==9)) a++;      // Θpurer espaces
  950.         if ((*a>='0') && (*a<='9')) {
  951.           sscanf(a,"%d",&(retour->statuscode));
  952.           // sauter 200
  953.           while ((*a!=' ') && (*a!='\0') && (*a!=10) && (*a!=13) && (*a!=9)) a++;   
  954.           while ((*a==' ') || (*a==10) || (*a==13) || (*a==9)) a++;      // Θpurer espaces
  955.           if ((strlen(a) > 1) && (strlen(a) < 64) )                // message retour
  956.             strcpybuff(retour->msg,a);
  957.           else
  958.             infostatuscode(retour->msg,retour->statuscode);
  959.           // type MIME par dΘfaut2
  960.           strcpybuff(retour->contenttype,HTS_HYPERTEXT_DEFAULT_MIME);
  961.         } else {  // pas de code!
  962.           retour->statuscode=-1;
  963.           strcpybuff(retour->msg,"Unknown response structure");
  964.         }
  965.       } else {  // euhh??
  966.         retour->statuscode=-1;
  967.         strcpybuff(retour->msg,"Unknown response structure");
  968.       }
  969.     } else {
  970.             if (*a == '<') {
  971.         /* This is dirty .. */
  972.         retour->statuscode=200;
  973.         strcpybuff(retour->msg, "Unknown, assuming junky server");
  974.         strcpybuff(retour->contenttype,HTS_HYPERTEXT_DEFAULT_MIME);
  975.             } else if (strnotempty(a)) {
  976.         retour->statuscode=-1;
  977.         strcpybuff(retour->msg,"Unknown response structure, no HTTP/ response given");
  978.       } else {
  979.         /* This is dirty .. */
  980.         retour->statuscode=200;
  981.         strcpybuff(retour->msg, "Unknown, assuming junky server");
  982.         strcpybuff(retour->contenttype,HTS_HYPERTEXT_DEFAULT_MIME);
  983.       }
  984.     }
  985.   } else {  // vide!
  986.     /*
  987.     retour->statuscode=-1;
  988.     strcpybuff(retour->msg,"Empty reponse or internal error");
  989.     */
  990.     /* This is dirty .. */
  991.     retour->statuscode=200;
  992.     strcpybuff(retour->msg, "Unknown, assuming junky server");
  993.     strcpybuff(retour->contenttype,HTS_HYPERTEXT_DEFAULT_MIME);
  994.   }
  995. }
  996.  
  997. // traiter ligne par ligne l'en tΩte
  998. // gestion des cookies
  999. void treathead(t_cookie* cookie,char* adr,char* fil,htsblk* retour,char* rcvd) {
  1000.   int p;
  1001.   if ((p=strfield(rcvd,"Content-length:"))!=0) {
  1002. #if HDEBUG
  1003.     printf("ok, Content-length: dΘtectΘ\n");
  1004. #endif
  1005.     sscanf(rcvd+p,LLintP,&(retour->totalsize));
  1006.     if (retour->totalsize == 0) {
  1007.       retour->empty = 1;
  1008.     }
  1009.   }
  1010.   else if ((p=strfield(rcvd,"Content-Disposition:"))!=0) {
  1011.     while(*(rcvd+p)==' ') p++;    // sauter espaces
  1012.     if ((int) strlen(rcvd+p)<250) { // pas trop long?
  1013.       char tmp[256];
  1014.       char *a=NULL,*b=NULL;
  1015.       strcpybuff(tmp,rcvd+p);
  1016.       a=strstr(tmp,"filename=");
  1017.       if (a) {
  1018.         a+=strlen("filename=");
  1019.         while(is_space(*a)) a++;
  1020.         //a=strchr(a,'"');
  1021.         if (a) {
  1022.           char *c=NULL;
  1023.           //a++;      /* jump " */
  1024.           while((c=strchr(a,'/')))    /* skip all / (see RFC2616) */
  1025.             a=c+1;
  1026.           //b=strchr(a+1,'"');
  1027.           b=a+strlen(a)-1;
  1028.           while(is_space(*b)) b--;
  1029.           b++;
  1030.           if (b) {
  1031.             *b='\0';
  1032.             if ((int) strlen(a) < 200) { // pas trop long?
  1033.               strcpybuff(retour->cdispo,a);
  1034.             }
  1035.           }
  1036.         }
  1037.       } 
  1038.     }
  1039.   }
  1040.   else if ((p=strfield(rcvd,"Last-Modified:"))!=0) {
  1041.     while(*(rcvd+p)==' ') p++;    // sauter espaces
  1042.     if ((int) strlen(rcvd+p)<64) { // pas trop long?
  1043.       //struct tm* tm_time=convert_time_rfc822(rcvd+p);
  1044.       strcpybuff(retour->lastmodified,rcvd+p);
  1045.     }
  1046.   }
  1047.   else if ((p=strfield(rcvd,"Date:"))!=0) {
  1048.     if (strnotempty(retour->lastmodified)==0) {          /* pas encore de last-modified */
  1049.       while(*(rcvd+p)==' ') p++;    // sauter espaces
  1050.       if ((int) strlen(rcvd+p)<64) { // pas trop long?
  1051.         //struct tm* tm_time=convert_time_rfc822(rcvd+p);
  1052.         strcpybuff(retour->lastmodified,rcvd+p);
  1053.       }
  1054.     }
  1055.   }
  1056.   else if ((p=strfield(rcvd,"Etag:"))!=0) {   /* Etag */
  1057.     if (retour) {
  1058.       while(*(rcvd+p)==' ') p++;    // sauter espaces
  1059.       if ((int) strlen(rcvd+p)<64)  // pas trop long?
  1060.         strcpybuff(retour->etag,rcvd+p);
  1061.       else    // erreur.. ignorer
  1062.         retour->etag[0]='\0';
  1063.     }
  1064.   }
  1065.   else if ((p=strfield(rcvd,"Transfer-Encoding: chunked"))!=0) {  // chunk!
  1066.     retour->is_chunk=1;     // chunked
  1067.     //retour->http11=2;     // chunked
  1068. #if HDEBUG
  1069.     printf("ok, Transfer-Encoding: dΘtectΘ\n");
  1070. #endif
  1071.   }
  1072.   else if ((p=strfield(rcvd,"Content-type:"))!=0) {
  1073.     if (retour) {
  1074.       char tempo[1100];
  1075.       // Θviter les text/html; charset=foo
  1076.       {
  1077.         char* a=strchr(rcvd+p,';');
  1078.         if (a) *a='\0';
  1079.       }
  1080.       sscanf(rcvd+p,"%s",tempo);
  1081.       if (strlen(tempo)<64)    // pas trop long!!
  1082.         strcpybuff(retour->contenttype,tempo);
  1083.       else
  1084.         strcpybuff(retour->contenttype,"application/octet-stream-unknown");    // erreur
  1085.     }
  1086.   }
  1087.   else if ((p=strfield(rcvd,"Content-Range:"))!=0) {
  1088.     char* a=strstr(rcvd+p,"*/");
  1089.     if (a) {
  1090.       if (sscanf(a+2,LLintP,&retour->crange) != 1) {
  1091.         retour->crange=0;
  1092.       }
  1093.     }
  1094.   }
  1095.   else if ((p=strfield(rcvd,"Content-Encoding:"))!=0) {
  1096.     if (retour) {
  1097.       char tempo[1100];
  1098.       {
  1099.         char* a=strchr(rcvd+p,';');
  1100.         if (a) *a='\0';
  1101.       }
  1102.       sscanf(rcvd+p,"%s",tempo);
  1103.       if (strlen(tempo)<64)    // pas trop long!!
  1104.         strcpybuff(retour->contentencoding,tempo);
  1105.       else
  1106.         retour->contentencoding[0]='\0';    // erreur
  1107. #if HTS_USEZLIB
  1108.       /* Check known encodings */
  1109.       if (retour->contentencoding[0]) {
  1110.         if (
  1111.           (strfield2(retour->contentencoding, "gzip"))
  1112.           || (strfield2(retour->contentencoding, "x-gzip"))
  1113.           /*
  1114.           || (strfield2(retour->contentencoding, "compress"))
  1115.           || (strfield2(retour->contentencoding, "x-compress"))
  1116.           */
  1117.           || (strfield2(retour->contentencoding, "deflate"))
  1118.           || (strfield2(retour->contentencoding, "x-deflate"))
  1119.           ) {
  1120.         retour->compressed=1;
  1121.         }
  1122.       }
  1123. #endif
  1124.     }
  1125.   }
  1126.   else if ((p=strfield(rcvd,"Location:"))!=0) {
  1127.     if (retour) {
  1128.       if (retour->location) {
  1129.         while(*(rcvd+p)==' ') p++;    // sauter espaces
  1130.         if ((int) strlen(rcvd+p)<HTS_URLMAXSIZE)  // pas trop long?
  1131.           strcpybuff(retour->location,rcvd+p);
  1132.         else    // erreur.. ignorer
  1133.           retour->location[0]='\0';
  1134.       }
  1135.     }
  1136.   }
  1137.   else if ((p=strfield(rcvd,"Connection: Keep-Alive"))!=0) {
  1138.     // non, pas de keep-alive! on dΘconnectera..          
  1139.   }
  1140.   else if ((p=strfield(rcvd,"Keep-Alive:"))!=0) {    // params keep-alive
  1141.     // rien α faire          
  1142.   }
  1143.   else if ( ((p=strfield(rcvd,"Set-Cookie:"))!=0) && (cookie) ) {    // ohh un cookie
  1144.     char* a = rcvd+p;           // pointeur
  1145.     char domain[256];           // domaine cookie (.netscape.com)
  1146.     char path[256];             // chemin (/)
  1147.     char cook_name[256];        // nom cookie (MYCOOK)
  1148.     char cook_value[8192];      // valeur (ID=toto,S=1234)
  1149. #if DEBUG_COOK
  1150.     printf("set-cookie detected\n");
  1151. #endif
  1152.     while(*a) {
  1153.       char *token_st,*token_end;
  1154.       char *value_st,*value_end;
  1155.       char name[256];
  1156.       char value[8192];
  1157.       int next=0;
  1158.       name[0]=value[0]='\0';
  1159.       //
  1160.  
  1161.       // initialiser cookie lu actuellement
  1162.       if (adr)
  1163.         strcpybuff(domain,jump_identification(adr));     // domaine
  1164.       strcpybuff(path,"/");         // chemin (/)
  1165.       strcpybuff(cook_name,"");     // nom cookie (MYCOOK)
  1166.       strcpybuff(cook_value,"");    // valeur (ID=toto,S=1234)
  1167.       // boucler jusqu'au prochain cookie ou la fin
  1168.       do {
  1169.         char* start_loop=a;
  1170.         while(is_space(*a)) a++;    // sauter espaces
  1171.         token_st=a;                 // dΘpart token
  1172.         while((!is_space(*a)) && (*a) && (*a!=';') && (*a!='=')) a++;    // arrΩter si espace, point virgule
  1173.         token_end=a;
  1174.         while(is_space(*a)) a++;    // sauter espaces
  1175.         if (*a=='=') {    // name=value
  1176.           a++;
  1177.           while(is_space(*a)) a++;    // sauter espaces
  1178.           value_st=a;
  1179.           while( (*a!=';') && (*a)) a++;    // prochain ;
  1180.           //while( ((*a!='"') || (*(a-1)=='\\')) && (*a)) a++;    // prochain " (et pas \")
  1181.           value_end=a;
  1182.           //if (*a==';') {  // finit par un ;
  1183.           // vΘrifier dΘbordements
  1184.           if ( (((int) (token_end - token_st))<200) && (((int) (value_end - value_st))<8000)
  1185.             && (((int) (token_end - token_st))>0)   && (((int) (value_end - value_st))>0) ) {
  1186.             name[0]='\0';
  1187.             value[0]='\0';
  1188.             strncatbuff(name,token_st,(int) (token_end - token_st));
  1189.             strncatbuff(value,value_st,(int) (value_end - value_st));
  1190. #if DEBUG_COOK
  1191.             printf("detected cookie-av: name=\"%s\" value=\"%s\"\n",name,value);
  1192. #endif
  1193.             if (strfield2(name,"domain")) {
  1194.               strcpybuff(domain,value);
  1195.             }
  1196.             else if (strfield2(name,"path")) {
  1197.               strcpybuff(path,value);
  1198.             }
  1199.             else if (strfield2(name,"max-age")) {
  1200.               // ignorΘ..
  1201.             }
  1202.             else if (strfield2(name,"expires")) {
  1203.               // ignorΘ..
  1204.             }
  1205.             else if (strfield2(name,"version")) {
  1206.               // ignorΘ..
  1207.             }
  1208.             else if (strfield2(name,"comment")) {
  1209.               // ignorΘ
  1210.             }
  1211.             else if (strfield2(name,"secure")) {    // ne devrait pas arriver ici
  1212.               // ignorΘ
  1213.             }
  1214.             else {
  1215.               if (strnotempty(cook_name)==0) {          // noter premier: nom et valeur cookie
  1216.                 strcpybuff(cook_name,name);
  1217.                 strcpybuff(cook_value,value);
  1218.               } else {                             // prochain cookie
  1219.                 a=start_loop;      // on devra recommencer α cette position
  1220.                 next=1;            // enregistrer
  1221.               }
  1222.             }
  1223.           }
  1224.         }
  1225.         if (!next) {
  1226.           while((*a!=';') && (*a)) a++;    // prochain
  1227.           while(*a==';') a++;             // sauter ;
  1228.         }
  1229.       } while((*a) && (!next));
  1230.       if (strnotempty(cook_name)) {          // cookie?
  1231. #if DEBUG_COOK
  1232.         printf("new cookie: name=\"%s\" value=\"%s\" domain=\"%s\" path=\"%s\"\n",cook_name,cook_value,domain,path);
  1233. #endif
  1234.         cookie_add(cookie,cook_name,cook_value,domain,path);
  1235.       }
  1236.     }
  1237.   }
  1238. }
  1239.  
  1240.  
  1241. // transforme le message statuscode en chaεne
  1242. HTSEXT_API void infostatuscode(char* msg,int statuscode) {
  1243.   switch( statuscode) {    
  1244.     // Erreurs HTTP, selon RFC
  1245.   case 100: strcpybuff( msg,"Continue"); break; 
  1246.   case 101: strcpybuff( msg,"Switching Protocols"); break; 
  1247.   case 200: strcpybuff( msg,"OK"); break; 
  1248.   case 201: strcpybuff( msg,"Created"); break; 
  1249.   case 202: strcpybuff( msg,"Accepted"); break; 
  1250.   case 203: strcpybuff( msg,"Non-Authoritative Information"); break; 
  1251.   case 204: strcpybuff( msg,"No Content"); break; 
  1252.   case 205: strcpybuff( msg,"Reset Content"); break; 
  1253.   case 206: strcpybuff( msg,"Partial Content"); break; 
  1254.   case 300: strcpybuff( msg,"Multiple Choices"); break; 
  1255.   case 301: strcpybuff( msg,"Moved Permanently"); break; 
  1256.   case 302: strcpybuff( msg,"Moved Temporarily"); break; 
  1257.   case 303: strcpybuff( msg,"See Other"); break; 
  1258.   case 304: strcpybuff( msg,"Not Modified"); break; 
  1259.   case 305: strcpybuff( msg,"Use Proxy"); break; 
  1260.   case 306: strcpybuff( msg,"Undefined 306 error"); break; 
  1261.   case 307: strcpybuff( msg,"Temporary Redirect"); break; 
  1262.   case 400: strcpybuff( msg,"Bad Request"); break; 
  1263.   case 401: strcpybuff( msg,"Unauthorized"); break; 
  1264.   case 402: strcpybuff( msg,"Payment Required"); break; 
  1265.   case 403: strcpybuff( msg,"Forbidden"); break; 
  1266.   case 404: strcpybuff( msg,"Not Found"); break; 
  1267.   case 405: strcpybuff( msg,"Method Not Allowed"); break; 
  1268.   case 406: strcpybuff( msg,"Not Acceptable"); break; 
  1269.   case 407: strcpybuff( msg,"Proxy Authentication Required"); break; 
  1270.   case 408: strcpybuff( msg,"Request Time-out"); break; 
  1271.   case 409: strcpybuff( msg,"Conflict"); break; 
  1272.   case 410: strcpybuff( msg,"Gone"); break; 
  1273.   case 411: strcpybuff( msg,"Length Required"); break; 
  1274.   case 412: strcpybuff( msg,"Precondition Failed"); break; 
  1275.   case 413: strcpybuff( msg,"Request Entity Too Large"); break; 
  1276.   case 414: strcpybuff( msg,"Request-URI Too Large"); break; 
  1277.   case 415: strcpybuff( msg,"Unsupported Media Type"); break; 
  1278.   case 416: strcpybuff( msg,"Requested Range Not Satisfiable"); break; 
  1279.   case 417: strcpybuff( msg,"Expectation Failed"); break; 
  1280.   case 500: strcpybuff( msg,"Internal Server Error"); break; 
  1281.   case 501: strcpybuff( msg,"Not Implemented"); break; 
  1282.   case 502: strcpybuff( msg,"Bad Gateway"); break; 
  1283.   case 503: strcpybuff( msg,"Service Unavailable"); break; 
  1284.   case 504: strcpybuff( msg,"Gateway Time-out"); break; 
  1285.   case 505: strcpybuff( msg,"HTTP Version Not Supported"); break; 
  1286.     //
  1287.   default: if (strnotempty(msg)==0) strcpybuff( msg,"Unknown error"); break;
  1288.   }
  1289. }
  1290.  
  1291.  
  1292. // identique au prΘcΘdent, sauf que l'on donne adr+fil et non url complΦte
  1293. htsblk xhttpget(char* adr,char* fil) {
  1294.   T_SOC soc;
  1295.   htsblk retour;
  1296.   
  1297.   memset(&retour, 0, sizeof(htsblk));
  1298.   soc=http_fopen(adr,fil,&retour);
  1299.  
  1300.   if (soc!=INVALID_SOCKET) {
  1301.     http_fread(soc,&retour);
  1302. #if HTS_DEBUG_CLOSESOCK
  1303.     DEBUG_W("xhttpget: deletehttp\n");
  1304. #endif
  1305.     if (retour.soc!=INVALID_SOCKET) deletehttp(&retour);  // fermer
  1306.     retour.soc=INVALID_SOCKET;
  1307.   }
  1308.   return retour;
  1309. }
  1310.  
  1311. // variation sur un thΦme...
  1312. // rΘceptionne uniquement un en-tΩte (HEAD)
  1313. // retourne dans xx.adr l'adresse pointant sur le bloc de mΘmoire de l'en tΩte
  1314. htsblk http_gethead(char* adr,char* fil) {
  1315.   T_SOC soc;
  1316.   htsblk retour;
  1317.  
  1318.   memset(&retour, 0, sizeof(htsblk));
  1319.   soc=http_xfopen(1,0,1,NULL,adr,fil,&retour);  // HEAD, pas de traitement en-tΩte
  1320.  
  1321.   if (soc!=INVALID_SOCKET) {
  1322.     http_fread(soc,&retour);    // rΘception en-tΩte
  1323. #if HTS_DEBUG_CLOSESOCK
  1324.     DEBUG_W("http_gethead: deletehttp\n");
  1325. #endif
  1326.     if (retour.soc!=INVALID_SOCKET) deletehttp(&retour);  // fermer
  1327.     retour.soc=INVALID_SOCKET;
  1328.   }
  1329.   return retour;
  1330. }
  1331. // oui ca ressemble vachement α xhttpget - en Θtant sobre on peut voir LA diffΘrence..
  1332.  
  1333.  
  1334. // lecture sur une socket ouverte, le header a dΘja ΘtΘ envoyΘ dans le cas de GET
  1335. // il ne reste plus qu'α lire les donnΘes
  1336. // (pour HEAD le header est lu ici!)
  1337. void http_fread(T_SOC soc,htsblk* retour) {  
  1338.   //int bufl=TAILLE_BUFFER;    // 8Ko de buffer
  1339.   
  1340.   if (retour) retour->soc=soc;
  1341.   if (soc!=INVALID_SOCKET) {    
  1342.     // fonction de lecture d'une socket (plus propre)
  1343.     while(http_fread1(retour)!=-1);
  1344.     soc=retour->soc;
  1345.     if (retour->adr==NULL) {
  1346.       if (strnotempty(retour->msg)==0)
  1347.         sprintf(retour->msg,"Unable to read");
  1348.       return ;    // erreur
  1349.     } 
  1350.     
  1351. #if HDEBUG
  1352.     printf("Ok, donnΘes reτues\n");
  1353. #endif   
  1354.  
  1355.     return ;
  1356.     
  1357.   } 
  1358.   
  1359.   return ;
  1360. }
  1361.  
  1362. // check if data is available
  1363. int check_readinput(htsblk* r) {
  1364.   if (r->soc != INVALID_SOCKET) {
  1365.     fd_set fds;           // poll structures
  1366.     struct timeval tv;          // structure for select
  1367.     FD_ZERO(&fds);
  1368.     FD_SET(r->soc,&fds);           
  1369.     tv.tv_sec=0;
  1370.     tv.tv_usec=0;
  1371.     select(r->soc + 1,&fds,NULL,NULL,&tv);
  1372.     if (FD_ISSET(r->soc,&fds))
  1373.       return 1;
  1374.     else
  1375.       return 0;
  1376.   } else
  1377.     return 0;
  1378. }
  1379.  
  1380. // lecture d'un bloc sur une socket (ou un fichier!)
  1381. // >=0 : nombre d'octets lus
  1382. // <0 : fin ou erreur
  1383. HTS_INLINE LLint http_fread1(htsblk* r) {
  1384.   //int bufl=TAILLE_BUFFER;  // taille d'un buffer max.
  1385.   return http_xfread1(r,TAILLE_BUFFER);
  1386. }
  1387.  
  1388. // idem, sauf qu'ici on peut choisir la taille max de donnΘes α recevoir
  1389. // SI bufl==0 alors le buffer est censΘ Ωtre de 8kos, et on recoit par bloc de lignes
  1390. // en Θliminant les cr (ex: header), arrΩt si double-lf
  1391. // SI bufl==-1 alors le buffer est censΘ Ωtre de 8kos, et on recoit ligne par ligne
  1392. // en Θliminant les cr (ex: header), arrΩt si double-lf
  1393. // Note: les +1 dans les malloc sont d√s α l'octet nul rajoutΘ en fin de fichier
  1394. LLint http_xfread1(htsblk* r,int bufl) {
  1395.   int nl=-1;
  1396.  
  1397.   if (bufl>0) {
  1398.     if (!r->is_write) {     // stocker en mΘmoire
  1399.       if (r->totalsize>0) {    // totalsize dΘterminΘ ET ALLOUE
  1400.         if (r->adr==NULL) {
  1401.           r->adr=(char*) malloct((INTsys) r->totalsize + 1);
  1402.           r->size=0;
  1403.         }
  1404.         if (r->adr!=NULL) {
  1405.           // lecture
  1406.           nl = hts_read(r,r->adr + ((int) r->size),(int) (r->totalsize-r->size) );     /* NO 32 bit overlow possible here (no 4GB html!) */
  1407.           // nouvelle taille
  1408.           if (nl >= 0) r->size+=nl;
  1409.           
  1410.           if ((nl < 0) || (r->size >= r->totalsize))
  1411.             nl=-1;  // break
  1412.           
  1413.           r->adr[r->size]='\0';    // caractΦre NULL en fin au cas o∙ l'on traite des HTML
  1414.         }
  1415.         
  1416.       } else {                 // inconnu..
  1417.         // rΘserver de la mΘmoire?
  1418.         if (r->adr==NULL) {
  1419. #if HDEBUG
  1420.           printf("..alloc xfread\n");
  1421. #endif
  1422.           r->adr=(char*) malloct(bufl + 1);
  1423.           r->size=0;
  1424.         }
  1425.         else {
  1426. #if HDEBUG
  1427.           printf("..realloc xfread1\n");
  1428. #endif
  1429.           r->adr=(char*) realloct(r->adr,(int)r->size+bufl + 1);
  1430.         }
  1431.         
  1432.         if (r->adr!=NULL) {
  1433.           // lecture
  1434.           nl = hts_read(r,r->adr+(int)r->size,bufl);
  1435.           if (nl>0) {
  1436.             // resize
  1437.             r->adr=(char*) realloct(r->adr,(int)r->size+nl + 1);
  1438.             // nouvelle taille
  1439.             r->size+=nl;
  1440.             // octet nul
  1441.             if (r->adr) r->adr[r->size]='\0';
  1442.  
  1443.           } // sinon on a fini
  1444. #if HDEBUG
  1445.           else if (nl < 0)
  1446.             printf("..end read (%d)\n", nl);
  1447. #endif
  1448.         }
  1449. #if HDEBUG
  1450.         else printf("..-> error\n");
  1451. #endif
  1452.       }
  1453.  
  1454.       // pas de adr=erreur
  1455.       if (r->adr==NULL) nl=-1;
  1456.  
  1457.     } else {    // stocker sur disque
  1458.       char* buff;
  1459.       buff=(char*) malloct(bufl);
  1460.       if (buff!=NULL) {
  1461.         // lecture
  1462.         nl = hts_read(r,buff,bufl);
  1463.         // nouvelle taille
  1464.         if (nl > 0) { 
  1465.           r->size+=nl;
  1466.           if ((int) fwrite(buff,1,nl,r->out)!=nl) {
  1467.             r->statuscode=-1;
  1468.             strcpybuff(r->msg,"Write error on disk");
  1469.             nl=-1;
  1470.           }
  1471.         }
  1472.  
  1473.         if ((nl < 0) || ((r->totalsize>0) && (r->size >= r->totalsize)))
  1474.           nl=-1;  // break
  1475.  
  1476.         // libΘrer bloc tempo
  1477.         freet(buff);
  1478.       } else
  1479.         nl=-1;
  1480.       
  1481.       if ((nl < 0) && (r->out!=NULL)) {
  1482.         fflush(r->out); 
  1483.       }
  1484.         
  1485.         
  1486.     } // stockage disque ou mΘmoire
  1487.  
  1488.   } else if (bufl == -2) {  // force reserve
  1489.     if (r->adr==NULL) {
  1490.       r->adr=(char*) malloct(8192);
  1491.       r->size=0;
  1492.       return 0;
  1493.     }
  1494.     return -1;
  1495.   } else {    // rΘception d'un en-tΩte octet par octet
  1496.     int count=256;
  1497.     int tot_nl=0;
  1498.     int lf_detected=0;
  1499.     int at_begining=1;
  1500.     do {
  1501.       nl=-1;
  1502.       count--;
  1503.       if (r->adr==NULL) {
  1504.         r->adr=(char*) malloct(8192);
  1505.         r->size=0;
  1506.       }
  1507.       if (r->adr!=NULL) {
  1508.         if (r->size < 8190) {
  1509.           // lecture
  1510.           nl = hts_read(r,r->adr+r->size,1);
  1511.           if (nl>0) {
  1512.             // exit if:
  1513.             // lf detected AND already detected before
  1514.             // or
  1515.             // lf detected AND first character read
  1516.             if (*(r->adr+r->size) == 10) {
  1517.               if (lf_detected || (at_begining) || (bufl<0))
  1518.                 count=-1;
  1519.               lf_detected=1;
  1520.             }
  1521.             if (*(r->adr+r->size) != 13) {   // sauter caractΦres 13
  1522.               if (
  1523.                 (*(r->adr+r->size) != 10)
  1524.                 &&
  1525.                 (*(r->adr+r->size) != 13)
  1526.                 ) {
  1527.                 // restart for new line
  1528.                 lf_detected=0;
  1529.               }
  1530.               (r->size)++;
  1531.               at_begining=0;
  1532.             }
  1533.             *(r->adr+r->size)='\0';    // terminer par octet nul
  1534.           }
  1535.         }
  1536.       }
  1537.       if (nl >= 0) {
  1538.         tot_nl+=nl;
  1539.         if (!check_readinput(r))
  1540.           count=-1;
  1541.       }
  1542.     } while((nl >= 0) && (count>0));
  1543.     nl = tot_nl;
  1544.   }
  1545. #if HDEBUG
  1546.   //printf("add to %d / %d\n",r->size,r->totalsize);
  1547. #endif
  1548.   // nl == 0 may mean "no relevant data", for example is using cache or ssl
  1549. #if HTS_USEOPENSSL
  1550.   if (r->ssl)
  1551.     return nl;
  1552.   else
  1553. #endif
  1554.     return ((nl > 0) ? nl : -1);        // ==0 is fatal if direct read
  1555. }
  1556.  
  1557.  
  1558. // teste une adresse, et suit l'Θventuel chemin "moved"
  1559. // retourne 200 ou le code d'erreur (404=NOT FOUND, etc)
  1560. // copie dans loc la vΘritable adresse si celle-ci est diffΘrente
  1561. htsblk http_location(char* adr,char* fil,char* loc) {
  1562.   htsblk retour;
  1563.   int retry=0;
  1564.   int tryagain;
  1565.   // note: "RFC says"
  1566.   // 5 boucles au plus, on en teste au plus 8 ici
  1567.   // sinon abandon..
  1568.   do {
  1569.     tryagain=0;
  1570.     switch ((retour=http_test(adr,fil,loc)).statuscode) {
  1571.     case 200: break;   // ok!
  1572.     case 301: case 302: case 303: case 307: // moved!
  1573.       // recalculer adr et fil!
  1574.       if (ident_url_absolute(loc,adr,fil)!=-1) {
  1575.         tryagain=1;  // retenter
  1576.         retry++;     // ..encore une fois
  1577.       }
  1578.     }
  1579.   } while((tryagain) && (retry<5+3));
  1580.   return retour;
  1581. }
  1582.  
  1583.  
  1584. // teste si une URL (validitΘ, header, taille)
  1585. // retourne 200 ou le code d'erreur (404=NOT FOUND, etc)
  1586. // en cas de moved xx, dans location
  1587. // abandonne dΘsormais au bout de 30 secondes (aurevoir les sites
  1588. // qui nous font poireauter 5 heures..) -> -2=timeout
  1589. htsblk http_test(char* adr,char* fil,char* loc) {
  1590.   T_SOC soc;
  1591.   htsblk retour;
  1592.   //int rcvsize=-1;
  1593.   //char* rcv=NULL;    // adresse de retour
  1594.   //int bufl=TAILLE_BUFFER;    // 8Ko de buffer
  1595.   TStamp tl;
  1596.   int timeout=30;  // timeout pour un check (arbitraire) // **
  1597.  
  1598.   // pour abandonner un site trop lent
  1599.   tl=time_local();
  1600.  
  1601.   loc[0]='\0';
  1602.   memset(&retour, 0, sizeof(htsblk));    // effacer
  1603.   retour.location=loc;    // si non nul, contiendra l'adresse vΘritable en cas de moved xx
  1604.  
  1605.   //soc=http_fopen(adr,fil,&retour,NULL);  // ouvrir, + header
  1606.  
  1607.   // on ouvre en head, et on traite l'en tΩte
  1608.   soc=http_xfopen(1,0,1,NULL,adr,fil,&retour);  // ouvrir HEAD, + envoi header
  1609.   
  1610.   if (soc!=INVALID_SOCKET) {
  1611.     int e=0;
  1612.     // tant qu'on a des donnΘes, et qu'on ne recoit pas deux LF, et que le timeout n'arrie pas
  1613.     do {
  1614.       if (http_xfread1(&retour,0) < 0)
  1615.         e=1;
  1616.       else {
  1617.         if (retour.adr!=NULL) {
  1618.           if ((retour.adr[retour.size-1]!=10) || (retour.adr[retour.size-2]!=10))
  1619.             e=1;
  1620.         }
  1621.       }
  1622.             
  1623.       if (!e) {
  1624.         if ((time_local()-tl)>=timeout) {
  1625.           e=-1;
  1626.         }
  1627.       }
  1628.       
  1629.     } while (!e);
  1630.     
  1631.     if (e==1) {
  1632.       if (adr!=NULL) {
  1633.         int ptr=0;
  1634.         char rcvd[1100];
  1635.  
  1636.         // note: en gros recopie du traitement de back_wait()
  1637.         //
  1638.  
  1639.  
  1640.         // ----------------------------------------
  1641.         // traiter en-tΩte!
  1642.         // status-line α rΘcupΘrer
  1643.         ptr+=binput(retour.adr+ptr,rcvd,1024);
  1644.         if (strnotempty(rcvd)==0)
  1645.           ptr+=binput(retour.adr+ptr,rcvd,1024);    // "certains serveurs buggΘs envoient un \n au dΘbut" (RFC)
  1646.         
  1647.         // traiter status-line
  1648.         treatfirstline(&retour,rcvd);
  1649.         
  1650. #if HDEBUG
  1651.         printf("(Buffer) Status-Code=%d\n",retour.statuscode);
  1652. #endif
  1653.         
  1654.         // en-tΩte
  1655.         
  1656.         // header // ** !attention! HTTP/0.9 non supportΘ
  1657.         do {
  1658.           ptr+=binput(retour.adr+ptr,rcvd,1024);          
  1659. #if HDEBUG
  1660.           printf("(buffer)>%s\n",rcvd);      
  1661. #endif
  1662.           if (strnotempty(rcvd))
  1663.             treathead(NULL,NULL,NULL,&retour,rcvd);  // traiter
  1664.           
  1665.         } while(strnotempty(rcvd));
  1666.         // ----------------------------------------                    
  1667.         
  1668.         // libΘrer mΘmoire
  1669.         if (retour.adr!=NULL) { freet(retour.adr); retour.adr=NULL; }
  1670.       }
  1671.     } else {
  1672.       retour.statuscode=-2;
  1673.       strcpybuff(retour.msg,"Timeout While Testing");
  1674.     }
  1675.     
  1676.     
  1677. #if HTS_DEBUG_CLOSESOCK
  1678.     DEBUG_W("http_test: deletehttp\n");
  1679. #endif
  1680.     deletehttp(&retour);
  1681.     retour.soc=INVALID_SOCKET;
  1682.   }
  1683.   return retour;    
  1684. }
  1685.  
  1686. // CrΘe un lien (http) vers une adresse internet iadr
  1687. // retour: structure (adresse, taille, message si erreur (si !adr))
  1688. // peut ouvrir avec des connect() non bloquants: waitconnect=0/1
  1689. int newhttp(char* _iadr,htsblk* retour,int port,int waitconnect) {  
  1690.   t_fullhostent fullhostent_buffer;    // buffer pour resolver
  1691.   T_SOC soc;                           // descipteur de la socket
  1692.   char* iadr;
  1693.   // unsigned short int port;
  1694.   
  1695.   // tester un Θventuel id:pass et virer id:pass@ si dΘtectΘ
  1696.   iadr = jump_identification(_iadr);
  1697.   
  1698.   // si iadr="#" alors c'est une fausse URL, mais un vrai fichier
  1699.   // local.
  1700.   // utile pour les tests!
  1701.   //## if (iadr[0]!=lOCAL_CHAR) {
  1702.   if (strcmp(_iadr,"file://")) {           /* non fichier */
  1703.     SOCaddr server;
  1704.     int server_size=sizeof(server);
  1705.     t_hostent* hp;    
  1706.     // effacer structure
  1707.     memset(&server, 0, sizeof(server));
  1708.  
  1709. #if HDEBUG
  1710.     printf("gethostbyname\n");
  1711. #endif
  1712.     
  1713.     // tester un Θventuel port
  1714.     if (port==-1) {
  1715.       char *a=jump_toport(iadr);
  1716. #if HTS_USEOPENSSL
  1717.       if (retour->ssl)
  1718.         port=443;
  1719.       else
  1720.         port=80;    // port par dΘfaut
  1721. #else
  1722.       port=80;    // port par dΘfaut
  1723. #endif
  1724.       if (a) {
  1725.         char iadr2[HTS_URLMAXSIZE*2];
  1726.         int i=-1;
  1727.         iadr2[0]='\0';
  1728.         sscanf(a+1,"%d",&i);
  1729.         if (i!=-1) {
  1730.           port=(unsigned short int) i;
  1731.         }
  1732.         
  1733.         // adresse vΘritable (sans :xx)
  1734.         strncatbuff(iadr2,iadr,(int) (a - iadr));
  1735.  
  1736.         // adresse sans le :xx
  1737.         hp = hts_gethostbyname(iadr2, &fullhostent_buffer);
  1738.         
  1739.       } else {
  1740.  
  1741.         // adresse normale (port par dΘfaut par la suite)
  1742.         hp = hts_gethostbyname(iadr, &fullhostent_buffer);
  1743.         
  1744.       }
  1745.       
  1746.     } else    // port dΘfini
  1747.       hp = hts_gethostbyname(iadr, &fullhostent_buffer);
  1748.  
  1749.     
  1750.     // Conversion iadr -> adresse
  1751.     // structure recevant le nom de l'h⌠te, etc
  1752.     //struct     hostent     *hp;
  1753.     if (hp == NULL) {
  1754. #if DEBUG
  1755.       printf("erreur gethostbyname\n");
  1756. #endif
  1757.       if (retour)
  1758.       if (retour->msg)
  1759.         strcpybuff(retour->msg,"Unable to get server's address");
  1760.       return INVALID_SOCKET;
  1761.     }  
  1762.     // copie adresse
  1763.     SOCaddr_copyaddr(server, server_size, hp->h_addr_list[0], hp->h_length);
  1764.     // memcpy(&SOCaddr_sinaddr(server), hp->h_addr_list[0], hp->h_length);
  1765.      
  1766.     // crΘer ("attachement") une socket (point d'accΦs) internet,en flot
  1767. #if HDEBUG
  1768.     printf("socket\n");
  1769. #endif
  1770. #if HTS_WIDE_DEBUG    
  1771.     DEBUG_W("socket\n");
  1772. #endif
  1773.     soc=socket(SOCaddr_sinfamily(server), SOCK_STREAM, 0);
  1774. #if HTS_WIDE_DEBUG    
  1775.     DEBUG_W("socket done\n");
  1776. #endif
  1777.     if (soc==INVALID_SOCKET) {
  1778.       if (retour)
  1779.       if (retour->msg)
  1780.         strcpybuff(retour->msg,"Unable to create a socket");
  1781.       return INVALID_SOCKET;                        // erreur crΘation socket impossible
  1782.     }
  1783.     // structure: connexion au domaine internet, port 80 (ou autre)
  1784.     SOCaddr_initport(server, port);
  1785. #if HDEBUG
  1786.     printf("==%d\n",soc);
  1787. #endif
  1788.  
  1789.     // connexion non bloquante?
  1790.     if (!waitconnect ) {
  1791.       unsigned long p=1;  // non bloquant
  1792. #if HTS_WIN
  1793.       ioctlsocket(soc,FIONBIO,&p);
  1794. #else
  1795.       ioctl(soc,FIONBIO,&p);
  1796. #endif
  1797.     }
  1798.     
  1799.     // Connexion au serveur lui mΩme
  1800. #if HDEBUG
  1801.     printf("connect\n");
  1802. #endif
  1803.     
  1804. #if HTS_WIDE_DEBUG
  1805.     DEBUG_W("connect\n");
  1806. #endif
  1807. #if HTS_WIN
  1808.     if (connect(soc, (const struct sockaddr FAR *)&server, server_size) != 0) {
  1809. #else
  1810.       if (connect(soc, (struct sockaddr *)&server, server_size) == -1) {
  1811. #endif
  1812.  
  1813.         // no - non blocking
  1814.         //deletesoc(soc);
  1815.         //soc=INVALID_SOCKET;
  1816.  
  1817.         // bloquant
  1818.         if (waitconnect) {
  1819. #if HDEBUG
  1820.           printf("unable to connect!\n");
  1821. #endif
  1822.           if (retour)
  1823.           if (retour->msg)
  1824.             strcpybuff(retour->msg,"Unable to connect to the server");
  1825.           /* Close the socket and notify the error!!! */
  1826.           deletesoc(soc);
  1827.           return INVALID_SOCKET;
  1828.         }
  1829.       }
  1830. #if HTS_WIDE_DEBUG    
  1831.       DEBUG_W("connect done\n");
  1832. #endif
  1833.       
  1834. #if HDEBUG
  1835.       printf("connexion Θtablie\n");
  1836. #endif
  1837.     
  1838.     // A partir de maintenant, on peut envoyer et recevoir des donnΘes
  1839.     // via le flot identifiΘ par soc (socket): write(soc,adr,taille) et 
  1840.     // read(soc,adr,taille)
  1841.  
  1842.   } else {    // on doit ouvrir un fichier local!
  1843.     // il sera gΘrΘ de la mΩme maniΦre qu'une socket (c'est idem!)
  1844.  
  1845.     soc=LOCAL_SOCKET_ID;    // pseudo-socket locale..
  1846.     // soc sera remplacΘ lors d'un http_fopen() par un handle vΘritable!
  1847.  
  1848.   }   // teste fichier local ou http
  1849.   
  1850.   return soc;
  1851. }
  1852.  
  1853.  
  1854.  
  1855. // couper http://www.truc.fr/pub/index.html -> www.truc.fr /pub/index.html
  1856. // retour=-1 si erreur.
  1857. // si file://... alors adresse=file:// (et coupe le ?query dans ce cas)
  1858. int ident_url_absolute(char* url,char* adr,char* fil) {
  1859.   int pos=0;
  1860.   int scheme=0;
  1861.  
  1862.   // effacer adr et fil
  1863.   adr[0]=fil[0]='\0';
  1864.   
  1865. #if HDEBUG
  1866.   printf("protocol: %s\n",url);
  1867. #endif
  1868.  
  1869.   // Scheme?
  1870.   {
  1871.     char* a=url;
  1872.     while (isalpha((unsigned char)*a))
  1873.       a++;
  1874.     if (*a == ':')
  1875.       scheme=1;
  1876.   }
  1877.  
  1878.   // 1. optional scheme ":"
  1879.   if ((pos=strfield(url,"file:"))) {    // fichier local!! (pour les tests)
  1880.     //!! p+=3;
  1881.     strcpybuff(adr,"file://");
  1882.   } else if ((pos=strfield(url,"http:"))) {    // HTTP
  1883.     //!!p+=3;
  1884.   } else if ((pos=strfield(url,"ftp:"))) {    // FTP
  1885.     strcpybuff(adr,"ftp://");    // FTP!!
  1886.     //!!p+=3;
  1887. #if HTS_USEOPENSSL
  1888.   } else if (SSL_is_available && (pos=strfield(url,"https:"))) {    // HTTPS
  1889.     strcpybuff(adr,"https://");
  1890. #endif
  1891.   } else if (scheme) {
  1892.     return -1;    // erreur non reconnu
  1893.   } else
  1894.     pos=0;
  1895.  
  1896.   // 2. optional "//" authority
  1897.   if (strncmp(url+pos,"//",2)==0)
  1898.     pos+=2;
  1899.  
  1900.   // (url+pos) now points to the path (not net path)
  1901.  
  1902.   //## if (adr[0]!=lOCAL_CHAR) {    // adresse normale http
  1903.   if (!strfield(adr,"file:")) {      // PAS file://
  1904.     char *p,*q;
  1905.     p=url+pos;
  1906.  
  1907.     // p pointe sur le dΘbut de l'adresse, ex: www.truc.fr/sommaire/index.html
  1908.     q=strchr(jump_identification(p),'/');
  1909.     if (q==0) q=strchr(jump_identification(p),'?');     // http://www.foo.com?bar=1
  1910.     if (q==0) q=p+strlen(p);  // pointe sur \0
  1911.     // q pointe sur le chemin, ex: index.html?query=recherche
  1912.     
  1913.     // chemin www... trop long!!
  1914.     if ( ( ((int) (q - p)) )  > HTS_URLMAXSIZE) {
  1915.       //strcpybuff(retour.msg,"Path too long");
  1916.       return -1;    // erreur
  1917.     }
  1918.     
  1919.     // recopier adresse www..
  1920.     strncatbuff(adr,p, ((int) (q - p)) );
  1921.     // *( adr+( ((int) q) - ((int) p) ) )=0;  // faut arrΩter la fumette!
  1922.     // recopier chemin /pub/..
  1923.     if (q[0] != '/')    // page par dΘfaut (/)
  1924.       strcatbuff(fil,"/");
  1925.     strcatbuff(fil,q);
  1926.     // SECURITE:
  1927.     // simplifier url pour les ../
  1928.     fil_simplifie(fil);
  1929.   } else {    // localhost file://
  1930.     char *p;
  1931.     int i;
  1932.     char* a;
  1933.  
  1934.     p=url+pos;
  1935.     
  1936.     strcatbuff(fil,p);    // fichier local ; adr="#"
  1937.     a=strchr(fil,'?');
  1938.     if (a) 
  1939.       *a='\0';      /* couper query (inutile pour file:// lors de la requΩte) */
  1940.     // filtrer les \\ -> / pour les fichiers DOS
  1941.     for(i=0;i<(int) strlen(fil);i++)
  1942.       if (fil[i]=='\\')
  1943.         fil[i]='/';
  1944.   }
  1945.  
  1946.   // no hostname
  1947.   if (!strnotempty(adr))
  1948.     return -1;    // erreur non reconnu
  1949.  
  1950.   // nommer au besoin.. (non utilisΘ normalement)
  1951.   if (!strnotempty(fil))
  1952.     strcpybuff(fil,"default-index.html");
  1953.  
  1954.   // case insensitive pour adresse
  1955.   {
  1956.     char *a=jump_identification(adr);
  1957.     while(*a) {
  1958.       if ((*a>='A') && (*a<='Z'))
  1959.         *a+='a'-'A';       
  1960.       a++;
  1961.     }
  1962.   }
  1963.   
  1964.   return 0;
  1965. }
  1966.  
  1967. // simplification des ../
  1968. void fil_simplifie(char* f) {
  1969.   int i=0;
  1970.   int last=0;
  1971.   char* a;
  1972.  
  1973.   // Θliminer ../
  1974.   while (f[i]) {
  1975.     
  1976.     if (f[i]=='/') {
  1977.       if (f[i+1]=='.')
  1978.       if (f[i+2]=='.')      // couper dernier rΘpertoire
  1979.       if (f[i+3]=='/')      // Θviter les /tmp/..coolandlamedir/
  1980.       {    // couper dernier rΘpertoire
  1981.         char tempo[HTS_URLMAXSIZE*2];
  1982.         tempo[0]='\0';
  1983.         //
  1984.         if (!last)                /* can't go upper.. */
  1985.           strcpybuff(tempo,"/");
  1986.         else
  1987.           strncpy(tempo,f,last+1);
  1988.         tempo[last+1]='\0';
  1989.         strcatbuff(tempo,f+i+4);
  1990.         strcpybuff(f,tempo);    // remplacer
  1991.         i=-1;             // recommencer
  1992.         last=0;
  1993.       }
  1994.       
  1995.       if (i>=0)
  1996.         last=i;
  1997.       else
  1998.         last=0;
  1999.     }
  2000.     
  2001.     i++;
  2002.   }
  2003.  
  2004.   // Θliminer ./
  2005.   while ( (a=strstr(f,"./")) ) {
  2006.     char tempo[HTS_URLMAXSIZE*2];
  2007.     tempo[0]='\0';
  2008.     strcpybuff(tempo,a+2);
  2009.     strcpybuff(a,tempo);
  2010.   }
  2011.   // delete all remaining ../ (potential threat)
  2012.   while ( (a=strstr(f,"../")) ) {
  2013.     char tempo[HTS_URLMAXSIZE*2];
  2014.     tempo[0]='\0';
  2015.     strcpybuff(tempo,a+3);
  2016.     strcpybuff(a,tempo);
  2017.   }
  2018.   
  2019. }
  2020.  
  2021.  
  2022. // fermer liaison fichier ou socket
  2023. HTS_INLINE void deletehttp(htsblk* r) {
  2024. #if HTS_DEBUG_CLOSESOCK
  2025.     char info[256];
  2026.     sprintf(info,"deletehttp: (htsblk*) %d\n",r);
  2027.     DEBUG_W2(info);
  2028. #endif
  2029.   if (r->soc!=INVALID_SOCKET) {
  2030.     if (r->is_file) {
  2031.       if (r->fp)
  2032.         fclose(r->fp);
  2033.       r->fp=NULL;
  2034.     } else {
  2035.       if (r->soc!=LOCAL_SOCKET_ID)
  2036.         deletesoc_r(r);
  2037.     }
  2038.     r->soc=INVALID_SOCKET;
  2039.   }
  2040. }
  2041.  
  2042. // fermer une socket
  2043. HTS_INLINE void deletesoc(T_SOC soc) {
  2044.   if (soc!=INVALID_SOCKET) {
  2045. // J'ai plantΘ.. pas de shutdown
  2046. //#if HTS_WIDE_DEBUG    
  2047. //    DEBUG_W("shutdown\n");
  2048. //#endif
  2049. //    shutdown(soc,2);  // shutdown
  2050. //#if HTS_WIDE_DEBUG    
  2051. //    DEBUG_W("shutdown done\n");
  2052. //#endif
  2053.     // Ne pas oublier de fermer la connexion avant de partir.. (plus propre)
  2054. #if HTS_WIDE_DEBUG    
  2055.     DEBUG_W("close\n");
  2056. #endif
  2057. #if HTS_WIN
  2058.     closesocket(soc);
  2059. #else
  2060.     close(soc);
  2061. #endif
  2062. #if HTS_WIDE_DEBUG    
  2063.     DEBUG_W("close done\n");
  2064. #endif
  2065.   }
  2066. }
  2067.  
  2068. /* Will also clean other things */
  2069. HTS_INLINE void deletesoc_r(htsblk* r) {
  2070. #if HTS_USEOPENSSL
  2071.   if (SSL_is_available && r->ssl_con) {
  2072.     SSL_shutdown(r->ssl_con);
  2073.     // SSL_CTX_set_quiet_shutdown(r->ssl_con->ctx, 1);
  2074.     SSL_free(r->ssl_con);
  2075.     r->ssl_con=NULL;
  2076.   }
  2077. #endif
  2078.   deletesoc(r->soc);
  2079.   r->soc=INVALID_SOCKET;
  2080. }
  2081.  
  2082. // renvoi le nombre de secondes depuis 1970
  2083. HTS_INLINE TStamp time_local(void) {
  2084.   return ((TStamp) time(NULL));
  2085. }
  2086.  
  2087. // number of millisec since 1970
  2088. HTSEXT_API HTS_INLINE TStamp mtime_local(void) {
  2089. #ifndef HTS_DO_NOT_USE_FTIME
  2090.   struct timeb B;
  2091.   ftime( &B );
  2092.   return (TStamp) ( ((TStamp) B.time * (TStamp) 1000)
  2093.         + ((TStamp) B.millitm) );
  2094. #else
  2095.   // not precise..
  2096.   return (TStamp) ( ((TStamp) time_local() * (TStamp) 1000)
  2097.         + ((TStamp) 0) );
  2098. #endif
  2099. }
  2100.  
  2101. // convertit un nombre de secondes en temps (chaine)
  2102. void sec2str(char *st,TStamp t) {
  2103.   int j,h,m,s;
  2104.   
  2105.   j=(int) (t/(3600*24));
  2106.   t-=((TStamp) j)*(3600*24);
  2107.   h=(int) (t/(3600));
  2108.   t-=((TStamp) h)*3600;
  2109.   m=(int) (t/60);
  2110.   t-=((TStamp) m)*60;
  2111.   s=(int) t;
  2112.   
  2113.   if (j>0)
  2114.     sprintf(st,"%d days, %d hours %d minutes %d seconds",j,h,m,s);
  2115.   else if (h>0)
  2116.     sprintf(st,"%d hours %d minutes %d seconds",h,m,s);
  2117.   else if (m>0)
  2118.     sprintf(st,"%d minutes %d seconds",m,s);
  2119.   else
  2120.     sprintf(st,"%d seconds",s);
  2121. }
  2122.  
  2123. // idem, plus court (chaine)
  2124. HTSEXT_API void qsec2str(char *st,TStamp t) {
  2125.   int j,h,m,s;
  2126.   
  2127.   j=(int) (t/(3600*24));
  2128.   t-=((TStamp) j)*(3600*24);
  2129.   h=(int) (t/(3600));
  2130.   t-=((TStamp) h)*3600;
  2131.   m=(int) (t/60);
  2132.   t-=((TStamp) m)*60;
  2133.   s=(int) t;
  2134.   
  2135.   if (j>0)
  2136.     sprintf(st,"%dd,%02dh,%02dmin%02ds",j,h,m,s);
  2137.   else if (h>0)
  2138.     sprintf(st,"%dh,%02dmin%02ds",h,m,s);
  2139.   else if (m>0)
  2140.     sprintf(st,"%dmin%02ds",m,s);
  2141.   else
  2142.     sprintf(st,"%ds",s);
  2143. }
  2144.  
  2145.  
  2146. // heure actuelle, GMT, format rfc (taille buffer 256o)
  2147. void time_gmt_rfc822(char* s) {
  2148.   time_t tt;
  2149.   struct tm* A;
  2150.   tt=time(NULL);
  2151.   A=gmtime(&tt);
  2152.   if (A==NULL)
  2153.     A=localtime(&tt);
  2154.   time_rfc822(s,A);
  2155. }
  2156.  
  2157. // heure actuelle, format rfc (taille buffer 256o)
  2158. void time_local_rfc822(char* s) {
  2159.   time_t tt;
  2160.   struct tm* A;
  2161.   tt=time(NULL);
  2162.   A=localtime(&tt);
  2163.   time_rfc822_local(s,A);
  2164. }
  2165.  
  2166. /* convertir une chaine en temps */
  2167. struct tm* convert_time_rfc822(char* s) {
  2168.   struct tm* result;
  2169.   /* */
  2170.   char months[]="jan feb mar apr may jun jul aug sep oct nov dec";
  2171.   char str[256];
  2172.   char* a;
  2173.   /* */
  2174.   int result_mm=-1;
  2175.   int result_dd=-1;
  2176.   int result_n1=-1;
  2177.   int result_n2=-1;
  2178.   int result_n3=-1;
  2179.   int result_n4=-1;
  2180.   /* */
  2181.   NOSTATIC_RESERVE(result, struct tm, 1);
  2182.  
  2183.   if ((int) strlen(s) > 200)
  2184.     return NULL;
  2185.   strcpybuff(str,s);
  2186.   hts_lowcase(str);
  2187.   /* Θliminer :,- */
  2188.   while( (a=strchr(str,'-')) ) *a=' ';
  2189.   while( (a=strchr(str,':')) ) *a=' ';
  2190.   while( (a=strchr(str,',')) ) *a=' ';
  2191.   /* tokeniser */
  2192.   a=str;
  2193.   while(*a) {
  2194.     char *first,*last;
  2195.     char tok[256];
  2196.     /* dΘcouper mot */
  2197.     while(*a==' ') a++;   /* sauter espaces */
  2198.     first=a;
  2199.     while((*a) && (*a!=' ')) a++;
  2200.     last=a;
  2201.     tok[0]='\0';
  2202.     if (first!=last) {
  2203.       char* pos;
  2204.       strncatbuff(tok,first,(int) (last - first));
  2205.       /* analyser */
  2206.       if ( (pos=strstr(months,tok)) ) {               /* month always in letters */
  2207.         result_mm=((int) (pos - months))/4;
  2208.       } else {
  2209.         int number;
  2210.         if (sscanf(tok,"%d",&number) == 1) {      /* number token */
  2211.           if (result_dd<0)                        /* day always first number */
  2212.             result_dd=number;
  2213.           else if (result_n1<0)
  2214.             result_n1=number;
  2215.           else if (result_n2<0)
  2216.             result_n2=number;
  2217.           else if (result_n3<0)
  2218.             result_n3=number;
  2219.           else if (result_n4<0)
  2220.             result_n4=number;
  2221.         }   /* sinon, bruit de fond(+1GMT for exampel) */
  2222.       }
  2223.     }
  2224.   }
  2225.   if ((result_n1>=0) && (result_mm>=0) && (result_dd>=0) && (result_n2>=0) && (result_n3>=0) && (result_n4>=0)) {
  2226.     if (result_n4>=1000) {               /* Sun Nov  6 08:49:37 1994 */
  2227.       result->tm_year=result_n4-1900;
  2228.       result->tm_hour=result_n1;
  2229.       result->tm_min=result_n2;
  2230.       result->tm_sec=max(result_n3,0);
  2231.     } else {                            /* Sun, 06 Nov 1994 08:49:37 GMT or Sunday, 06-Nov-94 08:49:37 GMT */
  2232.       result->tm_hour=result_n2;
  2233.       result->tm_min=result_n3;
  2234.       result->tm_sec=max(result_n4,0);
  2235.       if (result_n1<=50)                /* 00 means 2000 */
  2236.         result->tm_year=result_n1+100;
  2237.       else if (result_n1<1000)          /* 99 means 1999 */
  2238.         result->tm_year=result_n1;
  2239.       else                              /* 2000 */
  2240.         result->tm_year=result_n1-1900;
  2241.     }
  2242.     result->tm_isdst=0;        /* assume GMT */
  2243.     result->tm_yday=-1;        /* don't know */
  2244.     result->tm_wday=-1;        /* don't know */
  2245.     result->tm_mon=result_mm;
  2246.     result->tm_mday=result_dd;
  2247.     return result;
  2248.   }
  2249.   return NULL;
  2250. }
  2251.  
  2252. /* sets file time. -1 if error */
  2253. int set_filetime(char* file,struct tm* tm_time) {
  2254.   struct utimbuf tim;
  2255. #ifndef HTS_DO_NOT_USE_FTIME
  2256.   struct timeb B;
  2257.   B.timezone=0;
  2258.   ftime( &B );
  2259.   tim.actime=tim.modtime=mktime(tm_time) - B.timezone*60; 
  2260. #else
  2261.   // bogus time (GMT/local)..
  2262.   tim.actime=tim.modtime=mktime(tm_time); 
  2263. #endif
  2264.   return utime(file,&tim);
  2265. }
  2266.  
  2267. /* sets file time from RFC822 date+time, -1 if error*/
  2268. int set_filetime_rfc822(char* file,char* date) {
  2269.   struct tm* tm_s=convert_time_rfc822(date);
  2270.   if (tm_s) {
  2271.     return set_filetime(file,tm_s);
  2272.   } else return -1;
  2273. }
  2274.  
  2275.  
  2276. // heure au format rfc (taille buffer 256o)
  2277. HTS_INLINE void time_rfc822(char* s,struct tm * A) {
  2278.   strftime(s,256,"%a, %d %b %Y %H:%M:%S GMT",A);
  2279. }
  2280.  
  2281. // heure locale au format rfc (taille buffer 256o)
  2282. HTS_INLINE void time_rfc822_local(char* s,struct tm * A) {
  2283.   strftime(s,256,"%a, %d %b %Y %H:%M:%S",A);
  2284. }
  2285.  
  2286. // conversion en b,Kb,Mb
  2287. HTSEXT_API char* int2bytes(LLint n) {
  2288.   char** a=int2bytes2(n);
  2289.   char* buff;
  2290.   NOSTATIC_RESERVE(buff, char, 256);
  2291.  
  2292.   strcpybuff(buff,a[0]);
  2293.   strcatbuff(buff,a[1]);
  2294.   return concat(buff,"");
  2295. }
  2296.  
  2297. // conversion en b/s,Kb/s,Mb/s
  2298. HTSEXT_API char* int2bytessec(long int n) {
  2299.   char* buff;
  2300.   char** a=int2bytes2(n);
  2301.   NOSTATIC_RESERVE(buff, char, 256);
  2302.  
  2303.   strcpybuff(buff,a[0]);
  2304.   strcatbuff(buff,a[1]);
  2305.   return concat(buff,"/s");
  2306. }
  2307. HTSEXT_API char* int2char(int n) {
  2308.   char* buffer;
  2309.   NOSTATIC_RESERVE(buffer, char, 32);
  2310.   sprintf(buffer,"%d",n);
  2311.   return concat(buffer,"");
  2312. }
  2313.  
  2314. // conversion en b,Kb,Mb, nombre et type sΘparΘs
  2315. // limite: 2.10^9.10^6B
  2316.  
  2317. /* See http://physics.nist.gov/cuu/Units/binary.html */
  2318. #define ToLLint(a) ((LLint)(a))
  2319. #define ToLLintKiB (ToLLint(1024))
  2320. #define ToLLintMiB (ToLLintKiB*ToLLintKiB)
  2321. #ifdef HTS_LONGLONG
  2322. #define ToLLintGiB (ToLLintKiB*ToLLintKiB*ToLLintKiB)
  2323. #define ToLLintTiB (ToLLintKiB*ToLLintKiB*ToLLintKiB*ToLLintKiB)
  2324. #define ToLLintPiB (ToLLintKiB*ToLLintKiB*ToLLintKiB*ToLLintKiB*ToLLintKiB)
  2325. #endif
  2326. typedef struct {
  2327.   char buff1[256];
  2328.   char buff2[32];
  2329.   char* buffadr[2];
  2330. } strc_int2bytes2;
  2331. HTSEXT_API char** int2bytes2(LLint n) {
  2332.   strc_int2bytes2* strc;
  2333.   NOSTATIC_RESERVE(strc, strc_int2bytes2, 1);
  2334.  
  2335.   if (n < ToLLintKiB) {
  2336.     sprintf(strc->buff1,"%d",(int)(LLint)n);
  2337.     strcpybuff(strc->buff2,"B");
  2338.   } else if (n < ToLLintMiB) {
  2339.     sprintf(strc->buff1,"%d,%02d",(int)((LLint)(n/ToLLintKiB)),(int)((LLint)((n%ToLLintKiB)*100)/ToLLintKiB));
  2340.     strcpybuff(strc->buff2,"KiB");
  2341.   }
  2342. #ifdef HTS_LONGLONG
  2343.   else if (n < ToLLintGiB) {
  2344.     sprintf(strc->buff1,"%d,%02d",(int)((LLint)(n/(ToLLintMiB))),(int)((LLint)(((n%(ToLLintMiB))*100)/(ToLLintMiB))));
  2345.     strcpybuff(strc->buff2,"MiB");
  2346.   } else if (n < ToLLintTiB) {
  2347.     sprintf(strc->buff1,"%d,%02d",(int)((LLint)(n/(ToLLintGiB))),(int)((LLint)(((n%(ToLLintGiB))*100)/(ToLLintGiB))));
  2348.     strcpybuff(strc->buff2,"GiB");
  2349.   } else if (n < ToLLintPiB) {
  2350.     sprintf(strc->buff1,"%d,%02d",(int)((LLint)(n/(ToLLintTiB))),(int)((LLint)(((n%(ToLLintTiB))*100)/(ToLLintTiB))));
  2351.     strcpybuff(strc->buff2,"TiB");
  2352.   } else {
  2353.     sprintf(strc->buff1,"%d,%02d",(int)((LLint)(n/(ToLLintPiB))),(int)((LLint)(((n%(ToLLintPiB))*100)/(ToLLintPiB))));
  2354.     strcpybuff(strc->buff2,"PiB");
  2355.   }
  2356. #else
  2357.   else {
  2358.     sprintf(strc->buff1,"%d,%02d",(int)((LLint)(n/(ToLLintMiB))),(int)((LLint)(((n%(ToLLintMiB))*100)/(ToLLintMiB))));
  2359.     strcpybuff(strc->buff2,"MiB");
  2360.   }
  2361. #endif
  2362.   strc->buffadr[0]=strc->buff1;
  2363.   strc->buffadr[1]=strc->buff2;
  2364.   return strc->buffadr;
  2365. }
  2366.  
  2367. #if HTS_WIN
  2368. #else
  2369. // ignore sigpipe?
  2370. int sig_ignore_flag( int setflag ) {     // flag ignore
  2371.   static int flag=0;   /* YES, this one is true static */
  2372.   if (setflag>=0)
  2373.     flag=setflag;
  2374.   return flag;
  2375. }
  2376. #endif
  2377.  
  2378. // envoi de texte (en tΩtes gΘnΘralement) sur la socket soc
  2379. HTS_INLINE int sendc(htsblk* r, char* s) {
  2380.   int n;
  2381.  
  2382. #if HTS_WIN
  2383. #else
  2384.   sig_ignore_flag(1);
  2385. #endif
  2386. #if HDEBUG
  2387.   write(0,s,strlen(s));
  2388. #endif
  2389.  
  2390. #if HTS_USEOPENSSL
  2391.   if (SSL_is_available && r->ssl) {
  2392.     n = SSL_write(r->ssl_con, s, strlen(s));
  2393.   } else
  2394. #endif
  2395.     n = send(r->soc,s,strlen(s),0);
  2396.  
  2397. #if HTS_WIN
  2398. #else
  2399.   sig_ignore_flag(0);
  2400. #endif
  2401.  
  2402.   return n;
  2403. }
  2404.  
  2405.  
  2406. // Remplace read
  2407. void finput(int fd,char* s,int max) {
  2408.   char c;
  2409.   int j=0;
  2410.   do {
  2411.     //c=fgetc(fp);
  2412.     if (read(fd,&c,1)<=0) {
  2413.       c=0;
  2414.     }
  2415.     if (c!=0) {
  2416.       switch(c) {
  2417.       case 10: c=0; break;
  2418.       case 13: break;  // sauter ces caractΦres
  2419.       default: s[j++]=c; break;
  2420.       }
  2421.     }
  2422.   }  while((c!=0) && (j<max-1));
  2423.   s[j++]='\0';
  2424.  
  2425. // Like linput, but in memory (optimized)
  2426. int binput(char* buff,char* s,int max) {
  2427.   char* end;
  2428.   int count;
  2429.  
  2430.   // clear buffer
  2431.   s[0]='\0';
  2432.   // end of buffer?
  2433.   if ( *buff == '\0')
  2434.     return 1;
  2435.   // find ending \n
  2436.   end=strchr(buff,'\n');
  2437.   // ..or end of buffer
  2438.   if (!end)
  2439.     end=buff+strlen(buff);
  2440.   // then count number of bytes, maximum=max
  2441.   count=min(max,end-buff);
  2442.   // and strip annoying ending cr
  2443.   while( (count>0) && (buff[count] == '\r'))
  2444.     count--;
  2445.   // copy
  2446.   if (count > 0) {
  2447.     strncatbuff(s, buff, count);
  2448.   }
  2449.   // and terminate with a null char
  2450.   s[count]='\0';
  2451.   // then return the supplemental jump offset
  2452.   return (end-buff)+1;
  2453.  
  2454. // Lecture d'une ligne (peut Ωtre unicode α priori)
  2455. int linput(FILE* fp,char* s,int max) {
  2456.   int c;
  2457.   int j=0;
  2458.   do {
  2459.     c=fgetc(fp);
  2460.     if (c!=EOF) {
  2461.       switch(c) {
  2462.         case 13: break;  // sauter CR
  2463.         case 10: c=-1; break;
  2464.         case 9: case 12: break;  // sauter ces caractΦres
  2465.         default: s[j++]=(char) c; break;
  2466.       }
  2467.     }
  2468.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  2469.   s[j]='\0';
  2470.   return j;
  2471. }
  2472. int linput_trim(FILE* fp,char* s,int max) {
  2473.   int rlen=0;
  2474.   char* ls=(char*) malloct(max+2);
  2475.   s[0]='\0';
  2476.   if (ls) {
  2477.     char* a;
  2478.     // lire ligne
  2479.     rlen=linput(fp,ls,max);
  2480.     if (rlen) {
  2481.       // sauter espaces et tabs en fin
  2482.       while( (rlen>0) && ((ls[max(rlen-1,0)]==' ') || (ls[max(rlen-1,0)]=='\t')) )
  2483.         ls[--rlen]='\0';
  2484.       // sauter espaces en dΘbut
  2485.       a=ls;
  2486.       while((rlen>0) && ((*a==' ') || (*a=='\t'))) {
  2487.         a++;
  2488.         rlen--;
  2489.       }
  2490.       if (rlen>0) {
  2491.         memcpy(s,a,rlen);      // can copy \0 chars
  2492.         s[rlen]='\0';
  2493.       }
  2494.     }
  2495.     //
  2496.     freet(ls);
  2497.   }
  2498.   return rlen;
  2499. }
  2500. int linput_cpp(FILE* fp,char* s,int max) {
  2501.   int rlen=0;
  2502.   s[0]='\0';
  2503.   do {
  2504.     int ret;
  2505.     if (rlen>0)
  2506.     if (s[rlen-1]=='\\')
  2507.       s[--rlen]='\0';      // couper \ final
  2508.     // lire ligne
  2509.     ret=linput_trim(fp,s+rlen,max-rlen);
  2510.     if (ret>0)
  2511.       rlen+=ret;
  2512.   } while((s[max(rlen-1,0)]=='\\') && (rlen<max));
  2513.   return rlen;
  2514. }
  2515.  
  2516. // idem avec les car spΘciaux
  2517. void rawlinput(FILE* fp,char* s,int max) {
  2518.   int c;
  2519.   int j=0;
  2520.   do {
  2521.     c=fgetc(fp);
  2522.     if (c!=EOF) {
  2523.       switch(c) {
  2524.         case 13: break;  // sauter CR
  2525.         case 10: c=-1; break;
  2526.         default: s[j++]=(char) c; break;
  2527.       }
  2528.     }
  2529.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  2530.   s[j++]='\0';
  2531. }
  2532.  
  2533.  
  2534. // compare le dΘbut de f avec s et retourne la position de la fin
  2535. // 'A=a' (case insensitive)
  2536. int strfield(const char* f,const char* s) {
  2537.   int r=0;
  2538.   while (streql(*f,*s) && ((*f)!=0) && ((*s)!=0)) { f++; s++; r++; }
  2539.   if (*s==0)
  2540.     return r;
  2541.   else
  2542.     return 0;
  2543. }
  2544.  
  2545. //cherche chaine, case insensitive
  2546. char* strstrcase(char *s,char *o) {
  2547.   while((*s) && (strfield(s,o)==0)) s++;
  2548.   if (*s=='\0') return NULL;
  2549.   return s;  
  2550. }
  2551.  
  2552.  
  2553. // Unicode detector
  2554. // See http://www.unicode.org/unicode/reports/tr28/
  2555. // (sect Table 3.1B. Legal UTF-8 Byte Sequences)
  2556. typedef struct {
  2557.   unsigned int pos;
  2558.   unsigned char data[4];
  2559. } t_auto_seq;
  2560.  
  2561. // char between a and b
  2562. #define CHAR_BETWEEN(c, a, b)       ( (c) >= 0x##a ) && ( (c) <= 0x##b )
  2563. // sequence start
  2564. #define SEQBEG                      ( inseq == 0 )
  2565. // in this block
  2566. #define BLK(n,a, b)                 ( (seq.pos >= n) && ((err = CHAR_BETWEEN(seq.data[n], a, b))) )
  2567. #define ELT(n,a)                    BLK(n,a,a)
  2568. // end
  2569. #define SEQEND                      ((ok = 1))
  2570. // sequence started, character will fail if error
  2571. #define IN_SEQ                      ( (inseq = 1) )
  2572. // decoding error
  2573. #define BAD_SEQ                     ( (ok == 0) && (inseq != 0) && (!err) )
  2574. // no sequence started
  2575. #define NO_SEQ                      ( inseq == 0 )
  2576.  
  2577. // is this block an UTF unicode textfile?
  2578. // 0 : no
  2579. // 1 : yes
  2580. // -1: don't know
  2581. int is_unicode_utf8(unsigned char* buffer, unsigned int size) {
  2582.   t_auto_seq seq;
  2583.   unsigned int i;
  2584.   int is_utf=-1;
  2585.  
  2586.   seq.pos=0;
  2587.   for(i=0 ; i < size ; i++) {
  2588.     unsigned int ok=0;
  2589.     unsigned int inseq=0;
  2590.     unsigned int err=0;
  2591.  
  2592.     seq.data[seq.pos]=buffer[i];
  2593.     /**/ if ( SEQBEG && BLK(0,00,7F) && IN_SEQ && SEQEND                                                 ) { }
  2594.     else if ( SEQBEG && BLK(0,C2,DF) && IN_SEQ && BLK(1,80,BF) && SEQEND                                 ) { }
  2595.     else if ( SEQBEG && ELT(0,E0   ) && IN_SEQ && BLK(1,A0,BF) && BLK(2,80,BF) && SEQEND                 ) { }
  2596.     else if ( SEQBEG && BLK(0,E1,EC) && IN_SEQ && BLK(1,80,BF) && BLK(2,80,BF) && SEQEND                 ) { }
  2597.     else if ( SEQBEG && ELT(0,ED   ) && IN_SEQ && BLK(1,80,9F) && BLK(2,80,BF) && SEQEND                 ) { }
  2598.     else if ( SEQBEG && BLK(0,EE,EF) && IN_SEQ && BLK(1,80,BF) && BLK(2,80,BF) && SEQEND                 ) { }
  2599.     else if ( SEQBEG && ELT(0,F0   ) && IN_SEQ && BLK(1,90,BF) && BLK(2,80,BF) && BLK(3,80,BF) && SEQEND ) { }
  2600.     else if ( SEQBEG && BLK(0,F1,F3) && IN_SEQ && BLK(1,80,BF) && BLK(2,80,BF) && BLK(3,80,BF) && SEQEND ) { }
  2601.     else if ( SEQBEG && ELT(0,F4   ) && IN_SEQ && BLK(1,80,8F) && BLK(2,80,BF) && BLK(3,80,BF) && SEQEND ) { }
  2602.     else if ( NO_SEQ ) {    // bad, unknown
  2603.       return 0;
  2604.     }
  2605.     /* */
  2606.     
  2607.     /* Error */
  2608.     if ( BAD_SEQ ) {
  2609.       return 0;
  2610.     }
  2611.  
  2612.     /* unicode character */
  2613.     if (seq.pos > 0)
  2614.       is_utf=1;
  2615.  
  2616.     /* Next */
  2617.     if (ok)
  2618.       seq.pos=0;
  2619.     else
  2620.       seq.pos++;
  2621.  
  2622.     /* Internal error */
  2623.     if (seq.pos >= 4)
  2624.       return 0;
  2625.  
  2626.   }
  2627.  
  2628.   return is_utf;
  2629. }
  2630.  
  2631. void map_characters(unsigned char* buffer, unsigned int size, unsigned int* map) {
  2632.   unsigned int i;
  2633.   memset(map, 0, sizeof(unsigned int) * 256);
  2634.   for(i = 0 ; i < size ; i++) {
  2635.     map[buffer[i]]++;
  2636.   }
  2637. }
  2638.  
  2639.  
  2640. // le fichier est-il un fichier html?
  2641. //  0 : non
  2642. //  1 : oui
  2643. // -1 : on sait pas
  2644. // -2 : on sait pas, pas d'extension
  2645. int ishtml(char* fil) {
  2646.   char *a;
  2647.  
  2648.   // patch pour les truc.html?Choix=toto
  2649.   if ( (a=strchr(fil,'?')) )  // paramΦtres?
  2650.     a--;  // pointer juste avant le ?
  2651.   else
  2652.     a=fil+strlen(fil)-1;  // pointer sur le dernier caractΦre
  2653.  
  2654.   if (*a=='/') return -1;    // rΘpertoire, on sait pas!!
  2655.   //if (*a=='/') return 1;    // ok rΘpertoire, html
  2656.  
  2657.   while ( (*a!='.') && (*a!='/')  && ( a > fil)) a--;
  2658.   if (*a=='.') {  // a une extension
  2659.     char fil_noquery[HTS_URLMAXSIZE*2];
  2660.     fil_noquery[0]='\0';
  2661.     a++;  // pointer sur extension
  2662.     strncatbuff(fil_noquery,a,HTS_URLMAXSIZE);
  2663.     a=strchr(fil_noquery,'?');
  2664.     if (a)
  2665.       *a='\0';
  2666.     return ishtml_ext(fil_noquery);     // retour
  2667.   } else return -2;   // indΘterminΘ, par exemple /truc
  2668. }
  2669.  
  2670. // idem, mais pour uniquement l'extension
  2671. int ishtml_ext(char* a) {
  2672.   int html=0;  
  2673.   //
  2674.   if (strfield2(a,"html"))       html = 1;
  2675.   else if (strfield2(a,"htm"))   html = 1;
  2676.   else if (strfield2(a,"shtml")) html = 1;
  2677.   else if (strfield2(a,"phtml")) html = 1;
  2678.   else if (strfield2(a,"htmlx")) html = 1;
  2679.   else if (strfield2(a,"shtm"))  html = 1;
  2680.   else if (strfield2(a,"phtm"))  html = 1;
  2681.   else if (strfield2(a,"htmx"))  html = 1;
  2682.   //
  2683.   // insuccΦs..
  2684.   else {
  2685.     switch(is_knowntype(a)) {
  2686.     case 1:
  2687.       html = 0;     // connu, non html
  2688.       break;
  2689.     case 2:
  2690.       html = 1;     // connu, html
  2691.       break;
  2692.     default:
  2693.       html = -1;    // inconnu..
  2694.       break;
  2695.     }
  2696.   }
  2697.   return html;  
  2698. }
  2699.  
  2700. // error (404,500..)
  2701. HTS_INLINE int ishttperror(int err) {
  2702.   switch (err/100) {
  2703.     case 4: case 5: return 1;
  2704.       break;
  2705.   }
  2706.   return 0;
  2707. }
  2708.  
  2709.  
  2710. // retourne le pointeur ou le pointeur + offset si il existe dans la chaine un @ signifiant 
  2711. // une identification
  2712. HTSEXT_API char* jump_identification(char* source) {
  2713.   char *a,*trytofind;
  2714.   // rechercher dernier @ (car parfois email transmise dans adresse!)
  2715.   // mais sauter ftp:// Θventuel
  2716.   a = jump_protocol(source);
  2717.   trytofind = strrchr_limit(a, '@', strchr(a,'/'));
  2718.   return (trytofind != NULL)?trytofind:a;
  2719. }
  2720.  
  2721. // find port (:80) or NULL if not found
  2722. // can handle IPV6 addresses
  2723. HTSEXT_API char* jump_toport(char* source) {
  2724.   char *a,*trytofind;
  2725.   a = jump_identification(source);
  2726.   trytofind = strrchr_limit(a, ']', strchr(source, '/'));    // find last ] (http://[3ffe:b80:1234::1]:80/foo.html)
  2727.   a = strchr( (trytofind)?trytofind:a, ':');
  2728.   return a;
  2729. }
  2730.  
  2731. // strrchr, but not too far
  2732. char* strrchr_limit(char* s, char c, char* limit) {
  2733.   if (limit == NULL) {
  2734.     char* p = strrchr(s, c);
  2735.     return p?(p+1):NULL;
  2736.   } else {
  2737.     char *a=NULL, *p;
  2738.     for(;;) {
  2739.       p=strchr((a)?a:s, c);
  2740.       if ((p >= limit) || (p == NULL))
  2741.         return a;
  2742.       a=p+1;
  2743.     }
  2744.   }
  2745. }
  2746.  
  2747. // retourner adr sans ftp://
  2748. HTS_INLINE char* jump_protocol(char* source) {
  2749.   int p;
  2750.   // scheme
  2751.   // "Comparisons of scheme names MUST be case-insensitive" (RFC2616)
  2752.   if ((p=strfield(source,"http:")))
  2753.     source+=p;
  2754.   else if ((p=strfield(source,"ftp:")))
  2755.     source+=p;
  2756.   else if ((p=strfield(source,"https:")))
  2757.     source+=p;
  2758.   else if ((p=strfield(source,"file:")))
  2759.     source+=p;
  2760.   // net_path
  2761.   if (strncmp(source,"//",2)==0)
  2762.     source+=2;
  2763.   return source;
  2764. }
  2765.  
  2766. // codage base 64 a vers b
  2767. void code64(char* a,char* b) {
  2768.   int i1=0,i2=0,i3=0,i4=0;
  2769.   unsigned long store;
  2770.   int n;
  2771.   const char _hts_base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  2772.   b[0]='\0';
  2773.   while(*a) {  
  2774.     // 24 bits
  2775.     n=1; store=0; store |= ((*a++) & 0xff);
  2776.     if (*a) { n=2; store <<= 8; store |= ((*a++) & 0xff); }
  2777.     if (*a) { n=3; store <<= 8; store |= ((*a++) & 0xff); }
  2778.     if (n==3) {
  2779.       i4=store & 63;
  2780.       i3=(store>>6) & 63;
  2781.       i2=(store>>12) & 63;
  2782.       i1=(store>>18) & 63;
  2783.     } else if (n==2) {
  2784.       store<<=2;    
  2785.       i3=store & 63;
  2786.       i2=(store>>6) & 63;
  2787.       i1=(store>>12) & 63;
  2788.     } else {
  2789.       store<<=4;
  2790.       i2=store & 63;
  2791.       i1=(store>>6) & 63;
  2792.     }
  2793.     
  2794.     *b++ = _hts_base64[i1];
  2795.     *b++ = _hts_base64[i2];
  2796.     if (n>=2)
  2797.       *b++ = _hts_base64[i3];
  2798.     else
  2799.       *b++ = '=';
  2800.     if (n>=3)
  2801.       *b++ = _hts_base64[i4];
  2802.     else
  2803.       *b++ = '=';
  2804.   }
  2805.   *b++='\0';
  2806. }
  2807.  
  2808. // remplacer " par " etc..
  2809. // buffer MAX 1Ko
  2810. #define strcmpbeg(a, b) strncmp(a, b, strlen(b))
  2811. HTSEXT_API void unescape_amp(char* s) {
  2812.   while(*s) {
  2813.     if (*s=='&') {
  2814.       char* end=strchr(s,';');
  2815.       if ( end && (((int) (end - s)) <= 8) ) {
  2816.         unsigned char c=0;
  2817.         
  2818.         // http://www.w3.org/TR/xhtml-modularization/dtd_module_defs.html
  2819.         if (strcmpbeg(s, "&#") == 0) {
  2820.           int num=0;
  2821.           if ( (s[2] == 'x') || (s[2] == 'X')) {
  2822.             if (sscanf(s+3, "%x", &num) == 1) {
  2823.               c=(unsigned char)num;
  2824.             }
  2825.           } else {
  2826.             if (sscanf(s+2, "%d", &num) == 1) {
  2827.               c=(unsigned char)num;
  2828.             }
  2829.           }
  2830.         } else if (strcmpbeg(s, " ")==0)
  2831.           c=32; // hack - c=160;
  2832.         else if (strcmpbeg(s, "¡")==0)
  2833.           c=161;
  2834.         else if (strcmpbeg(s, "¢")==0)
  2835.           c=162;
  2836.         else if (strcmpbeg(s, "£")==0)
  2837.           c=163;
  2838.         else if (strcmpbeg(s, "¤")==0)
  2839.           c=164;
  2840.         else if (strcmpbeg(s, "¥")==0)
  2841.           c=165;
  2842.         else if (strcmpbeg(s, "¦")==0)
  2843.           c=166;
  2844.         else if (strcmpbeg(s, "§")==0)
  2845.           c=167;
  2846.         else if (strcmpbeg(s, "¨")==0)
  2847.           c=168;
  2848.         else if (strcmpbeg(s, "©")==0)
  2849.           c=169;
  2850.         else if (strcmpbeg(s, "ª")==0)
  2851.           c=170;
  2852.         //else if (strcmpbeg(s, "«")==0)
  2853.         //  c=171;
  2854.         else if (strcmpbeg(s, "¬")==0)
  2855.           c=172;
  2856.         //else if (strcmpbeg(s, "­")==0)
  2857.         //  c=173;
  2858.         else if (strcmpbeg(s, "®")==0)
  2859.           c=174;
  2860.         else if (strcmpbeg(s, "¯")==0)
  2861.           c=175;
  2862.         else if (strcmpbeg(s, "°")==0)
  2863.           c=176;
  2864.         else if (strcmpbeg(s, "±")==0)
  2865.           c=177;
  2866.         else if (strcmpbeg(s, "²")==0)
  2867.           c=178;
  2868.         else if (strcmpbeg(s, "³")==0)
  2869.           c=179;
  2870.         else if (strcmpbeg(s, "´")==0)
  2871.           c=180;
  2872.         else if (strcmpbeg(s, "µ")==0)
  2873.           c=181;
  2874.         else if (strcmpbeg(s, "¶")==0)
  2875.           c=182;
  2876.         else if (strcmpbeg(s, "·")==0)
  2877.           c=183;
  2878.         else if (strcmpbeg(s, "¸")==0)
  2879.           c=184;
  2880.         else if (strcmpbeg(s, "¹")==0)
  2881.           c=185;
  2882.         else if (strcmpbeg(s, "º")==0)
  2883.           c=186;
  2884.         //else if (strcmpbeg(s, "»")==0)
  2885.         //  c=187;
  2886.         else if (strcmpbeg(s, "¼")==0)
  2887.           c=188;
  2888.         else if (strcmpbeg(s, "½")==0)
  2889.           c=189;
  2890.         else if (strcmpbeg(s, "¾")==0)
  2891.           c=190;
  2892.         else if (strcmpbeg(s, "¿")==0)
  2893.           c=191;
  2894.         else if (strcmpbeg(s, "À")==0)
  2895.           c=192;
  2896.         else if (strcmpbeg(s, "Á")==0)
  2897.           c=193;
  2898.         else if (strcmpbeg(s, "Â")==0)
  2899.           c=194;
  2900.         else if (strcmpbeg(s, "Ã")==0)
  2901.           c=195;
  2902.         else if (strcmpbeg(s, "Ä")==0)
  2903.           c=196;
  2904.         else if (strcmpbeg(s, "Å")==0)
  2905.           c=197;
  2906.         else if (strcmpbeg(s, "Æ")==0)
  2907.           c=198;
  2908.         else if (strcmpbeg(s, "Ç")==0)
  2909.           c=199;
  2910.         else if (strcmpbeg(s, "È")==0)
  2911.           c=200;
  2912.         else if (strcmpbeg(s, "É")==0)
  2913.           c=201;
  2914.         else if (strcmpbeg(s, "Ê")==0)
  2915.           c=202;
  2916.         else if (strcmpbeg(s, "Ë")==0)
  2917.           c=203;
  2918.         else if (strcmpbeg(s, "Ì")==0)
  2919.           c=204;
  2920.         else if (strcmpbeg(s, "Í")==0)
  2921.           c=205;
  2922.         else if (strcmpbeg(s, "Î")==0)
  2923.           c=206;
  2924.         else if (strcmpbeg(s, "Ï")==0)
  2925.           c=207;
  2926.         else if (strcmpbeg(s, "Ð")==0)
  2927.           c=208;
  2928.         else if (strcmpbeg(s, "Ñ")==0)
  2929.           c=209;
  2930.         else if (strcmpbeg(s, "Ò")==0)
  2931.           c=210;
  2932.         else if (strcmpbeg(s, "Ó")==0)
  2933.           c=211;
  2934.         else if (strcmpbeg(s, "Ô")==0)
  2935.           c=212;
  2936.         else if (strcmpbeg(s, "Õ")==0)
  2937.           c=213;
  2938.         else if (strcmpbeg(s, "Ö")==0)
  2939.           c=214;
  2940.         else if (strcmpbeg(s, "×")==0)
  2941.           c=215;
  2942.         else if (strcmpbeg(s, "Ø")==0)
  2943.           c=216;
  2944.         else if (strcmpbeg(s, "Ù")==0)
  2945.           c=217;
  2946.         else if (strcmpbeg(s, "Ú")==0)
  2947.           c=218;
  2948.         else if (strcmpbeg(s, "Û")==0)
  2949.           c=219;
  2950.         else if (strcmpbeg(s, "Ü")==0)
  2951.           c=220;
  2952.         else if (strcmpbeg(s, "Ý")==0)
  2953.           c=221;
  2954.         else if (strcmpbeg(s, "Þ")==0)
  2955.           c=222;
  2956.         else if (strcmpbeg(s, "ß")==0)
  2957.           c=223;
  2958.         else if (strcmpbeg(s, "à")==0)
  2959.           c=224;
  2960.         else if (strcmpbeg(s, "á")==0)
  2961.           c=225;
  2962.         else if (strcmpbeg(s, "â")==0)
  2963.           c=226;
  2964.         else if (strcmpbeg(s, "ã")==0)
  2965.           c=227;
  2966.         else if (strcmpbeg(s, "ä")==0)
  2967.           c=228;
  2968.         else if (strcmpbeg(s, "å")==0)
  2969.           c=229;
  2970.         else if (strcmpbeg(s, "æ")==0)
  2971.           c=230;
  2972.         else if (strcmpbeg(s, "ç")==0)
  2973.           c=231;
  2974.         else if (strcmpbeg(s, "è")==0)
  2975.           c=232;
  2976.         else if (strcmpbeg(s, "é")==0)
  2977.           c=233;
  2978.         else if (strcmpbeg(s, "ê")==0)
  2979.           c=234;
  2980.         else if (strcmpbeg(s, "ë")==0)
  2981.           c=235;
  2982.         else if (strcmpbeg(s, "ì")==0)
  2983.           c=236;
  2984.         else if (strcmpbeg(s, "í")==0)
  2985.           c=237;
  2986.         else if (strcmpbeg(s, "î")==0)
  2987.           c=238;
  2988.         else if (strcmpbeg(s, "ï")==0)
  2989.           c=239;
  2990.         else if (strcmpbeg(s, "ð")==0)
  2991.           c=240;
  2992.         else if (strcmpbeg(s, "ñ")==0)
  2993.           c=241;
  2994.         else if (strcmpbeg(s, "ò")==0)
  2995.           c=242;
  2996.         else if (strcmpbeg(s, "ó")==0)
  2997.           c=243;
  2998.         else if (strcmpbeg(s, "ô")==0)
  2999.           c=244;
  3000.         else if (strcmpbeg(s, "õ")==0)
  3001.           c=245;
  3002.         else if (strcmpbeg(s, "ö")==0)
  3003.           c=246;
  3004.         else if (strcmpbeg(s, "÷")==0)
  3005.           c=247;
  3006.         else if (strcmpbeg(s, "ø")==0)
  3007.           c=248;
  3008.         else if (strcmpbeg(s, "ù")==0)
  3009.           c=249;
  3010.         else if (strcmpbeg(s, "ú")==0)
  3011.           c=250;
  3012.         else if (strcmpbeg(s, "û")==0)
  3013.           c=251;
  3014.         else if (strcmpbeg(s, "ü")==0)
  3015.           c=252;
  3016.         else if (strcmpbeg(s, "ý")==0)
  3017.           c=253;
  3018.         else if (strcmpbeg(s, "þ")==0)
  3019.           c=254;
  3020.         else if (strcmpbeg(s, "ÿ")==0)
  3021.           c=255;
  3022.         //        
  3023.         else if (strcmpbeg(s,"&")==0)
  3024.           c='&';
  3025.         else if (strcmpbeg(s,">")==0)
  3026.           c='>';
  3027.         else if (strcmpbeg(s,"«")==0)
  3028.           c='\"';
  3029.         else if (strcmpbeg(s,"<")==0)
  3030.           c='<';
  3031.         else if (strcmpbeg(s," ")==0)
  3032.           c=' ';
  3033.         else if (strcmpbeg(s,""")==0)
  3034.           c='\"';
  3035.         else if (strcmpbeg(s,"»")==0)
  3036.           c='\"';
  3037.         else if (strcmpbeg(s,"­")==0)
  3038.           c='-';
  3039.         else if (strcmpbeg(s,"˜")==0)
  3040.           c='~';
  3041.         // remplacer?
  3042.         if (c) {
  3043.           char buff[HTS_URLMAXSIZE*2];
  3044.           buff[0]=(char) c;
  3045.           strcpybuff(buff+1,end+1);
  3046.           strcpybuff(s,buff);
  3047.         }
  3048.       }
  3049.     }
  3050.     s++;
  3051.   }
  3052. }
  3053.  
  3054. // remplacer %20 par ' ', | par : etc..
  3055. // buffer MAX 1Ko
  3056. HTSEXT_API char* unescape_http(char* s) {
  3057.   char* tempo;
  3058.   int i,j=0;
  3059.   NOSTATIC_RESERVE(tempo, char, HTS_URLMAXSIZE*2);
  3060.   for (i=0;i<(int) strlen(s);i++) {
  3061.     if (s[i]=='%') {
  3062.       i++;
  3063.       tempo[j++]=(char) ehex(s+i);
  3064.       i++;    // sauter 2 caractΦres finalement
  3065.     }
  3066.     /*
  3067.     NON a cause de trucs comme /home/0,1837,1|7|1173|Content,00.html
  3068.     else if (s[i]=='|') {                     // exemple: file:///C|Program%20Files...
  3069.       tempo[j++]=':';
  3070.     }
  3071.     */
  3072.     else
  3073.       tempo[j++]=s[i];
  3074.   }
  3075.   tempo[j++]='\0';
  3076.   return tempo;
  3077. }
  3078.  
  3079. // unescape in URL/URI ONLY what has to be escaped, to form a standard URL/URI
  3080. HTSEXT_API char* unescape_http_unharm(char* s, int no_high) {
  3081.   char* tempo;
  3082.   int i,j=0;
  3083.   NOSTATIC_RESERVE(tempo, char, HTS_URLMAXSIZE*2);
  3084.   for (i=0;i<(int) strlen(s);i++) {
  3085.     if (s[i]=='%') {
  3086.       int nchar=(char) ehex(s+i+1);
  3087.  
  3088.       int test = (  CHAR_RESERVED(nchar)
  3089.                 || CHAR_DELIM(nchar)
  3090.                 || CHAR_UNWISE(nchar)
  3091.                 || CHAR_LOW(nchar)        /* CHAR_SPECIAL */
  3092.                 || CHAR_XXAVOID(nchar) 
  3093.                 || (
  3094.                   (no_high)
  3095.                   &&
  3096.                   CHAR_HIG(nchar)
  3097.                 )
  3098.                 );
  3099.  
  3100.       if (!test) {
  3101.         tempo[j++]=(char) ehex(s+i+1);
  3102.         i+=2;
  3103.       } else {
  3104.         tempo[j++]='%';
  3105.       }
  3106.     }
  3107.     /*
  3108.     NON a cause de trucs comme /home/0,1837,1|7|1173|Content,00.html
  3109.     else if (s[i]=='|') {                     // exemple: file:///C|Program%20Files...
  3110.       tempo[j++]=':';
  3111.     }
  3112.     */
  3113.     else
  3114.       tempo[j++]=s[i];
  3115.   }
  3116.   tempo[j++]='\0';
  3117.   return tempo;
  3118. }
  3119.  
  3120. // remplacer " par %xx etc..
  3121. // buffer MAX 1Ko
  3122. HTSEXT_API void escape_spc_url(char* s) {
  3123.   x_escape_http(s,2);
  3124. }
  3125. // smith / john -> smith%20%2f%20john
  3126. HTSEXT_API void escape_in_url(char* s) {
  3127.   x_escape_http(s,1);
  3128. }
  3129. // smith / john -> smith%20/%20john
  3130. HTSEXT_API void escape_uri(char* s) {
  3131.   x_escape_http(s,3);
  3132. }
  3133. HTSEXT_API void escape_uri_utf(char* s) {
  3134.   x_escape_http(s,30);
  3135. }
  3136. HTSEXT_API void escape_check_url(char* s) {
  3137.   x_escape_http(s,0);
  3138. }
  3139. // same as escape_check_url, but returns char*
  3140. HTSEXT_API char* escape_check_url_addr(char* s) {
  3141.   char* adr;
  3142.   escape_check_url(adr = concat(s,""));
  3143.   return adr;
  3144. }
  3145.  
  3146.  
  3147. HTSEXT_API void x_escape_http(char* s,int mode) {
  3148.   while(*s) {
  3149.     int test=0;
  3150.     if (mode == 0)
  3151.       test=(strchr("\" ",*s)!=0);
  3152.     else if (mode==1) {
  3153.       test = (  CHAR_RESERVED(*s)
  3154.              || CHAR_DELIM(*s)
  3155.              || CHAR_UNWISE(*s)
  3156.              || CHAR_SPECIAL(*s)
  3157.              || CHAR_XXAVOID(*s) );
  3158.     }
  3159.     else if (mode==2)
  3160.       test=(strchr(" ",*s)!=0);           // n'escaper que espace
  3161.     else if (mode==3) {                   // Θchapper que ce qui est nΘcessaire
  3162.       test = (
  3163.                 CHAR_SPECIAL(*s)
  3164.              || CHAR_XXAVOID(*s) );
  3165.     }
  3166.     else if (mode==30) {                   // Θchapper que ce qui est nΘcessaire
  3167.       test = (
  3168.                 CHAR_LOW(*s)
  3169.              || CHAR_XXAVOID(*s) );
  3170.     }
  3171.  
  3172.     if (test) {
  3173.       char buffer[HTS_URLMAXSIZE*2];
  3174.       int n;
  3175.       n=(int)(unsigned char) *s;
  3176.       strcpybuff(buffer,s+1);
  3177.       sprintf(s,"%%%02x",n);
  3178.       strcatbuff(s,buffer);
  3179.     }
  3180.     s++;
  3181.   }
  3182. }
  3183.  
  3184.  
  3185. HTS_INLINE int ehexh(char c) {
  3186.   if ((c>='0') && (c<='9')) return c-'0';
  3187.   if ((c>='a') && (c<='f')) c-=('a'-'A');
  3188.   if ((c>='A') && (c<='F')) return (c-'A'+10);
  3189.   return 0;
  3190. }
  3191.  
  3192. HTS_INLINE int ehex(char* s) {
  3193.   return 16*ehexh(*s)+ehexh(*(s+1));
  3194.  
  3195. }
  3196.  
  3197. // concat, concatΦne deux chaines et renvoi le rΘsultat
  3198. // permet d'allΘger grandement le code
  3199. // il faut savoir qu'on ne peut mettre plus de 16 concat() dans une expression
  3200. typedef struct {
  3201.   char buff[16][HTS_URLMAXSIZE*2*2];
  3202.   int rol;
  3203. } concat_strc;
  3204. char* concat(const char* a,const char* b) {
  3205.   concat_strc* strc;
  3206.   NOSTATIC_RESERVE(strc, concat_strc, 1);
  3207.   strc->rol=((strc->rol+1)%16);    // roving pointer
  3208.   strcpybuff(strc->buff[strc->rol],a);
  3209.   if (b) strcatbuff(strc->buff[strc->rol],b);
  3210.   return strc->buff[strc->rol];
  3211. }
  3212. // conversion fichier / -> antislash
  3213. #if HTS_DOSNAME
  3214. char* __fconv(char* a) {
  3215.   int i;
  3216.   for(i=0;i<(int) strlen(a);i++)
  3217.     if (a[i]=='/')  // convertir
  3218.       a[i]='\\';
  3219.   return a;
  3220. }
  3221. char* fconcat(char* a,char* b) {
  3222.   return __fconv(concat(a,b));
  3223. }
  3224. char* fconv(char* a) {
  3225.   return __fconv(concat(a,""));
  3226. }
  3227. #endif
  3228.  
  3229. /* / et \\ en / */
  3230. char* __fslash(char* a) {
  3231.   int i;
  3232.   for(i=0;i<(int) strlen(a);i++)
  3233.     if (a[i]=='\\')  // convertir
  3234.       a[i]='/';
  3235.   return a;
  3236. }
  3237. char* fslash(char* a) {
  3238.   return __fslash(concat(a,""));
  3239. }
  3240.  
  3241. // conversion minuscules, avec buffer
  3242. char* convtolower(char* a) {
  3243.   concat_strc* strc;
  3244.   NOSTATIC_RESERVE(strc, concat_strc, 1);
  3245.   strc->rol=((strc->rol+1)%16);    // roving pointer
  3246.   strcpybuff(strc->buff[strc->rol],a);
  3247.   hts_lowcase(strc->buff[strc->rol]);  // lower case
  3248.   return strc->buff[strc->rol];
  3249. }
  3250.  
  3251. // conversion en minuscules
  3252. void hts_lowcase(char* s) {
  3253.   int i;
  3254.   for(i=0;i<(int) strlen(s);i++)
  3255.     if ((s[i]>='A') && (s[i]<='Z'))
  3256.       s[i]+=('a'-'A');
  3257. }
  3258.  
  3259. // remplacer un caractΦre d'une chaεne dans une autre
  3260. HTS_INLINE void hts_replace(char *s,char from,char to) { 
  3261.   char* a;
  3262.   while ((a=strchr(s,from))!=NULL) {
  3263.     *a=to;
  3264.   }
  3265. }
  3266.  
  3267.  
  3268. // caractΦre espace, guillemets, CR, LF etc..
  3269. /* SECTION OPTIMISEE:
  3270.   #define  is_space(c) (strchr(" \"\x0d\x0a\x09'",c)!=NULL)
  3271.   #define  is_realspace(c) (strchr(" \x0d\x0a\x09\x0c",c)!=NULL)
  3272. */
  3273. /*
  3274. HTS_INLINE int is_space(char c) {
  3275.   if (c==' ')  return 1;  // spc
  3276.   if (c=='"')  return 1;  // quote
  3277.   if (c==10)   return 1;  // lf
  3278.   if (c==13)   return 1;  // cr
  3279.   if (c=='\'') return 1;  // quote
  3280.   //if (c=='`')  return 1;  // backquote      << non
  3281.   if (c==9)    return 1;  // tab
  3282.   return 0;
  3283. }
  3284. */
  3285.  
  3286. // caractΦre espace, CR, LF, TAB
  3287. /*
  3288. HTS_INLINE int is_realspace(char c) {
  3289.   if (c==' ')  return 1;  // spc
  3290.   if (c==10)   return 1;  // lf
  3291.   if (c==13)   return 1;  // cr
  3292.   if (c==9)    return 1;  // tab
  3293.   return 0;
  3294. }
  3295. */
  3296.  
  3297.  
  3298.  
  3299.  
  3300.  
  3301. // deviner type d'un fichier local..
  3302. // ex: fil="toto.gif" -> s="image/gif"
  3303. void guess_httptype(char *s,char *fil) {
  3304.   get_httptype(s,fil,1);
  3305. }
  3306. // idem
  3307. // flag: 1 si toujours renvoyer un type
  3308. void get_httptype(char *s,char *fil,int flag) {
  3309.   if (ishtml(fil)==1)
  3310.     strcpybuff(s,"text/html");
  3311.   else {
  3312.     char *a=fil+strlen(fil)-1;    
  3313.     while ( (*a!='.') && (*a!='/')  && (a>fil)) a--;
  3314.     if (*a=='.') {
  3315.       int ok=0;
  3316.       int j=0;
  3317.       a++;
  3318.       while( (!ok) && (strnotempty(hts_mime[j][1])) ) {
  3319.         if (strfield2(hts_mime[j][1],a)) {
  3320.           if (hts_mime[j][0][0]!='*') {    // Une correspondance existe
  3321.             strcpybuff(s,hts_mime[j][0]);
  3322.             ok=1;
  3323.           }
  3324.         }
  3325.         j++;
  3326.       }
  3327.       
  3328.       if (!ok) if (flag) sprintf(s,"application/%s",a);
  3329.     } else {
  3330.       if (flag) strcpybuff(s,"application/octet-stream");
  3331.     }
  3332.   }
  3333. }
  3334.  
  3335. // get type of fil (php)
  3336. // s: buffer (text/html) or NULL
  3337. // return: 1 if known by user
  3338. int get_userhttptype(int setdefs,char *s,char *ext) {
  3339.   char** buffer=NULL;
  3340.   NOSTATIC_RESERVE(buffer, char*, 1);
  3341.   if (setdefs) {
  3342.     *buffer=s;
  3343.     return 1;
  3344.   } else {
  3345.     if (s)
  3346.       s[0]='\0';
  3347.     if (!ext)
  3348.       return 0;
  3349.     if (*buffer) {
  3350.       char search[1024];
  3351.       char* detect;
  3352.       sprintf(search,"\n%s=",ext);    // php=text/html
  3353.       detect=strstr(*buffer,search);
  3354.       if (!detect) {
  3355.         sprintf(search,"\n%s\n",ext); // php\ncgi=text/html
  3356.         detect=strstr(*buffer,search);
  3357.       }
  3358.       if (detect) {
  3359.         detect=strchr(detect,'=');
  3360.         if (detect) {
  3361.           detect++;
  3362.           if (s) {
  3363.             char* a;
  3364.             a=strchr(detect,'\n');
  3365.             if (a) {
  3366.               strncatbuff(s,detect,(int) (a - detect));
  3367.             }
  3368.           }
  3369.           return 1;
  3370.         }
  3371.       }
  3372.     }
  3373.   }
  3374.   return 0;
  3375. }
  3376. // renvoyer extesion d'un type mime..
  3377. // ex: "image/gif" -> gif
  3378. void give_mimext(char *s,char *st) {   
  3379.   int ok=0;
  3380.   int j=0;
  3381.   s[0]='\0';
  3382.   while( (!ok) && (strnotempty(hts_mime[j][1])) ) {
  3383.     if (strfield2(hts_mime[j][0],st)) {
  3384.       if (hts_mime[j][1][0]!='*') {    // Une correspondance existe
  3385.         strcpybuff(s,hts_mime[j][1]);
  3386.         ok=1;
  3387.       }
  3388.     }
  3389.     j++;
  3390.   }
  3391.   // wrap "x" mimetypes, such as:
  3392.   // application/x-mp3
  3393.   // or
  3394.   // application/mp3
  3395.   if (!ok) {
  3396.     int p;
  3397.     char* a=NULL;
  3398.     if ((p=strfield(st,"application/x-")))
  3399.       a=st+p;
  3400.     else if ((p=strfield(st,"application/")))
  3401.       a=st+p;
  3402.     if (a) {
  3403.       if ((int)strlen(a) >= 1) {
  3404.         if ((int)strlen(a) <= 4) {
  3405.           strcpybuff(s,a);
  3406.           ok=1;
  3407.         }
  3408.       }
  3409.     }
  3410.   }
  3411. }
  3412. // extension connue?..
  3413. //  0 : non
  3414. //  1 : oui
  3415. //  2 : html
  3416. int is_knowntype(char *fil) {
  3417.   int j=0;
  3418.   if (!fil)
  3419.     return 0;
  3420.   while(strnotempty(hts_mime[j][1])) {
  3421.     if (strfield2(hts_mime[j][1],fil)) {
  3422.       if (strfield2(hts_mime[j][0],"text/html"))
  3423.         return 2;
  3424.       else
  3425.         return 1;
  3426.     }
  3427.     j++;
  3428.   }
  3429.  
  3430.   // Known by user?
  3431.   return (is_userknowntype(fil));
  3432. }
  3433. // extension : html,gif..
  3434. char* get_ext(char *fil) {
  3435.   char* fil_noquery;
  3436.   char *a=fil+strlen(fil)-1;    
  3437.   NOSTATIC_RESERVE(fil_noquery, char, HTS_URLMAXSIZE*2);
  3438.  
  3439.   while ( (*a!='.') && (*a!='/')  && (a>fil)) a--;
  3440.   if (*a=='.') {
  3441.     fil_noquery[0]='\0';
  3442.     a++;  // pointer sur extension
  3443.     strncatbuff(fil_noquery,a,HTS_URLMAXSIZE);
  3444.     a=strchr(fil_noquery,'?');
  3445.     if (a)
  3446.       *a='\0';
  3447.     return concat(fil_noquery,"");
  3448.   }
  3449.   else
  3450.     return "";
  3451. }
  3452. // known type?..
  3453. //  0 : no
  3454. //  1 : yes
  3455. //  2 : html
  3456. // setdefs : set mime buffer:
  3457. //   file=(char*) "asp=text/html\nphp=text/html\n"
  3458. int is_userknowntype(char *fil) {
  3459.   char mime[1024];
  3460.   if (!fil)
  3461.     return 0;
  3462.   if (!strnotempty(fil))
  3463.     return 0;
  3464.   mime[0]='\0';
  3465.   get_userhttptype(0,mime,fil);
  3466.   if (!strnotempty(mime))
  3467.     return 0;
  3468.   else if (strfield2(mime,"text/html"))
  3469.     return 2;
  3470.   else
  3471.     return 1;
  3472. }
  3473.  
  3474. // page dynamique?
  3475. // is_dyntype(get_ext("foo.asp"))
  3476. int is_dyntype(char *fil) {
  3477.   int j=0;
  3478.   if (!fil)
  3479.     return 0;
  3480.   if (!strnotempty(fil))
  3481.     return 0;
  3482.   while(strnotempty(hts_ext_dynamic[j])) {
  3483.     if (strfield2(hts_ext_dynamic[j],fil)) {
  3484.       return 1;
  3485.     }
  3486.     j++;
  3487.   }
  3488.   return 0;
  3489. }
  3490.  
  3491. // types critiques qui ne doivent pas Ωtre changΘs car renvoyΘs par des serveurs qui ne
  3492. // connaissent pas le type
  3493. int may_unknown(char* st) {
  3494.   int j=0;
  3495.   // types mΘdia
  3496.   if (may_be_hypertext_mime(st))
  3497.     return 1;
  3498.   while(strnotempty(hts_mime_keep[j])) {
  3499.     if (strfield2(hts_mime_keep[j],st)) {      // trouvΘ
  3500.       return 1;
  3501.     }
  3502.     j++;
  3503.   }    
  3504.   return 0;
  3505. }
  3506.  
  3507.  
  3508.  
  3509. // -- Utils fichiers
  3510.  
  3511. // pretty print for i/o
  3512. void fprintfio(FILE* fp,char* buff,char* prefix) {
  3513.   char nl=1;
  3514.   while(*buff) {
  3515.     switch(*buff) {
  3516.     case 13: break;
  3517.     case 10:
  3518.       fprintf(fp,"\r\n");
  3519.       nl=1;
  3520.     break;
  3521.     default:
  3522.       if (nl)
  3523.         fprintf(fp,prefix);
  3524.       nl=0;
  3525.       fputc(*buff,fp);
  3526.     }
  3527.     buff++;
  3528.   }
  3529. }
  3530.  
  3531. /* Le fichier existe-t-il? (ou est-il accessible?) */
  3532. int fexist(char* s) {
  3533.   FILE* fp;
  3534.   if (strnotempty(s)==0)     // nom vide: non trouvΘ
  3535.     return 0;
  3536.   fp=fopen(fconv(s),"rb");
  3537.   if (fp!=NULL) fclose(fp);
  3538.   return (fp!=NULL);
  3539.  
  3540. /* Taille d'un fichier, -1 si n'existe pas */
  3541. /* fp->_cnt ne fonctionne pas sur toute les plate-formes :-(( */
  3542. /* Note: NOT YET READY FOR 64-bit */
  3543. //LLint fsize(char* s) {
  3544. int fsize(char* s) {
  3545.   /*
  3546. #if HTS_WIN
  3547.   HANDLE hFile;
  3548.   DWORD dwSizeHigh = 0;
  3549.   DWORD dwSizeLow  = 0;
  3550.   hFile = CreateFile(s,0,0,NULL,OPEN_EXISTING,0,NULL);
  3551.   if (hFile) {
  3552.     dwSizeLow = GetFileSize (hFile, & dwSizeHigh) ;
  3553.     CloseHandle(hFile);
  3554.     if (dwSizeLow != 0xFFFFFFFF)
  3555.       return (dwSizeLow & (dwSizeHigh<<32));
  3556.     else
  3557.       return -1;
  3558.   } else
  3559.     return -1;
  3560. #else
  3561.     */
  3562.   FILE* fp;
  3563.   if (strnotempty(s)==0)     // nom vide: erreur
  3564.     return -1;
  3565.   fp=fopen(fconv(s),"rb");
  3566.   if (fp!=NULL) {
  3567.     int i;
  3568.     fseek(fp,0,SEEK_END);
  3569.     i=ftell(fp);
  3570.     fclose(fp);
  3571.     return i;
  3572.   } else return -1;
  3573.   /*
  3574. #endif
  3575.   */
  3576. }
  3577.  
  3578. int fpsize(FILE* fp) {
  3579.   int oldpos,size;
  3580.   if (!fp)
  3581.     return -1;
  3582.   oldpos=ftell(fp);
  3583.   fseek(fp,0,SEEK_END);
  3584.   size=ftell(fp);
  3585.   fseek(fp,oldpos,SEEK_SET);
  3586.   return size;
  3587. }
  3588.  
  3589. /* root dir, with ending / */
  3590. typedef struct {
  3591.   char path[1024+4];
  3592.   int init;
  3593. } hts_rootdir_strc;
  3594. HTSEXT_API char* hts_rootdir(char* file) {
  3595.   static hts_rootdir_strc strc = {"", 0};
  3596.   //NOSTATIC_RESERVE(strc, hts_rootdir_strc, 1);
  3597.   if (file) {
  3598.     if (!strc.init) {
  3599.       strc.path[0]='\0';
  3600.       strc.init=1;
  3601.       if (strnotempty(file)) {
  3602.         char* a;
  3603.         strcpybuff(strc.path,file);
  3604.         while((a=strrchr(strc.path,'\\'))) *a='/';
  3605.         if ((a=strrchr(strc.path,'/'))) {
  3606.           *(a+1)='\0';
  3607.         } else
  3608.           strc.path[0]='\0';
  3609.       }
  3610.       if (!strnotempty(strc.path)) {
  3611.         if( getcwd( strc.path, 1024 ) == NULL )
  3612.             strc.path[0]='\0';
  3613.         else
  3614.           strcatbuff(strc.path,"/");
  3615.       }
  3616.     }
  3617.     return NULL;
  3618.   } else if (strc.init)
  3619.     return strc.path;
  3620.   else
  3621.     return "";
  3622. }
  3623.  
  3624.  
  3625.  
  3626. HTSEXT_API hts_stat_struct HTS_STAT;
  3627. //
  3628. // return  number of downloadable bytes, depending on rate limiter
  3629. // see engine_stats() routine, too
  3630. // this routine works quite well for big files and regular ones, but apparently the rate limiter has
  3631. // some problems with very small files (rate too high)
  3632. LLint check_downloadable_bytes(int rate) {
  3633.   if (rate>0) {
  3634.     TStamp time_now;
  3635.     TStamp elapsed_useconds;
  3636.     LLint bytes_transfered_during_period;
  3637.     LLint left;
  3638.  
  3639.     // get the older timer
  3640.     int id_timer = (HTS_STAT.istat_idlasttimer + 1) % 2;
  3641.  
  3642.     time_now=mtime_local();
  3643.     elapsed_useconds = time_now - HTS_STAT.istat_timestart[id_timer];
  3644.     // NO totally stupid - elapsed_useconds+=1000;      // for the next second, too
  3645.     bytes_transfered_during_period = (HTS_STAT.HTS_TOTAL_RECV-HTS_STAT.istat_bytes[id_timer]);
  3646.     
  3647.     left = ((rate * elapsed_useconds)/1000) - bytes_transfered_during_period;
  3648.     if (left <= 0)
  3649.       left = 0;
  3650.     
  3651.     return left;
  3652.   } else
  3653.     return TAILLE_BUFFER;
  3654. }
  3655.  
  3656. //
  3657. // 0 : OK
  3658. // 1 : slow down
  3659. #if 0
  3660. int HTS_TOTAL_RECV_CHECK(int var) {
  3661.   if (HTS_STAT.HTS_TOTAL_RECV_STATE)
  3662.     return 1;
  3663.     /*
  3664.     {
  3665.     if (HTS_STAT.HTS_TOTAL_RECV_STATE==3) { 
  3666.       var = min(var,32); 
  3667.       Sleep(250); 
  3668.     } else if (HTS_STAT.HTS_TOTAL_RECV_STATE==2) { 
  3669.       var = min(var,256); 
  3670.       Sleep(100); 
  3671.     } else { 
  3672.       var/=2; 
  3673.       if (var<=0) var=1; 
  3674.       Sleep(50); 
  3675.     } 
  3676.   }
  3677.     */
  3678.   return 0;
  3679. }
  3680. #endif
  3681.  
  3682. // Lecture dans buff de size octets au maximum en utilisant la socket r (structure htsblk)
  3683. // >0 : data received
  3684. // == 0 : not yet data
  3685. // <0 : no more data or error
  3686. HTS_INLINE int hts_read(htsblk* r,char* buff,int size) {
  3687.   int retour;
  3688.   //  return read(soc,buff,size);
  3689.   if (r->is_file) {
  3690. #if HTS_WIDE_DEBUG    
  3691.     DEBUG_W("read\n");
  3692. #endif
  3693.     if (r->fp)
  3694.       retour=fread(buff,1,size,r->fp);
  3695.     else
  3696.       retour=-1;
  3697.   } else {
  3698. #if HTS_WIDE_DEBUG    
  3699.     DEBUG_W("recv\n");
  3700.     if (r->soc==INVALID_SOCKET)
  3701.       printf("!!WIDE_DEBUG ERROR, soc==INVALID hts_read\n");
  3702. #endif
  3703.     //HTS_TOTAL_RECV_CHECK(size);         // Diminuer au besoin si trop de donnΘes reτues
  3704. #if HTS_USEOPENSSL
  3705.     if (SSL_is_available && r->ssl) {
  3706.       retour = SSL_read(r->ssl_con, buff, size);
  3707.       if (retour <= 0) {
  3708.         int err_code = SSL_get_error(r->ssl_con, retour);
  3709.         if (
  3710.           (err_code == SSL_ERROR_WANT_READ)
  3711.           ||
  3712.           (err_code == SSL_ERROR_WANT_WRITE)
  3713.           ) 
  3714.         {
  3715.           retour = 0;             /* no data yet (ssl cache) */
  3716.         } else {
  3717.           retour = -1;            /* eof or error */
  3718.         }
  3719.       }
  3720.     } else {
  3721. #endif
  3722.     retour=recv(r->soc,buff,size,0);
  3723.   }
  3724.   if (retour > 0)    // compter flux entrant
  3725.     HTS_STAT.HTS_TOTAL_RECV+=retour;
  3726. #if HTS_USEOPENSSL
  3727.   }
  3728. #endif
  3729. #if HTS_WIDE_DEBUG    
  3730.   DEBUG_W("recv/read done\n");
  3731. #endif
  3732.   return retour;
  3733. }
  3734.  
  3735.  
  3736. // -- Gestion cache DNS --
  3737. // 'RX98
  3738. #if HTS_DNSCACHE
  3739.  
  3740. // 'capsule' contenant uniquement le cache
  3741. t_dnscache* _hts_cache(void) {
  3742.   t_dnscache* cache;
  3743.   NOSTATIC_RESERVE(cache, t_dnscache, 1);
  3744.   return cache;
  3745. }
  3746.  
  3747. // lock le cache dns pour tout opΘration d'ajout
  3748. // plus prudent quand plusieurs threads peuvent Θcrire dedans..
  3749. // -1: status? 0: libΘrer 1:locker
  3750.  
  3751. /* 
  3752.   Simple lock function for cache
  3753.  
  3754.   Return value: always 0
  3755.   Parameter:
  3756.   1 wait for lock (mutex) available and lock it
  3757.   0 unlock the mutex
  3758.   [-1 check if locked (always return 0 with mutex)]
  3759.   -999 initialize
  3760. */
  3761. #if USE_BEGINTHREAD
  3762. int _hts_lockdns(int i) {
  3763.   static PTHREAD_LOCK_TYPE hMutex; 
  3764.   return htsSetLock(&hMutex,i);
  3765. }
  3766. #else
  3767. int _hts_lockdns(int i) {
  3768.   int l=0;
  3769.   if (i>=0)
  3770.     l=i;
  3771.   return l;
  3772. }
  3773. #endif
  3774.  
  3775. // routine pour le cache - retour optionnel α donner α chaque fois
  3776. // NULL: nom non encore testΘ dans le cache
  3777. // si h_length==0 alors le nom n'existe pas dans le dns
  3778. t_hostent* _hts_ghbn(t_dnscache* cache,char* iadr,t_hostent* retour) {
  3779.   // attendre que le cache dns soit prΩt
  3780.   while(_hts_lockdns(-1));  // attendre libΘration
  3781.   _hts_lockdns(1);          // locker
  3782.  
  3783.   while(1) {
  3784.     if (strcmp(cache->iadr,iadr)==0) {  // ok trouvΘ
  3785.       if (cache->host_length>0) {  // entrΘe valide
  3786.         if (retour->h_addr_list[0])
  3787.           memcpy(retour->h_addr_list[0], cache->host_addr, cache->host_length);
  3788.         retour->h_length=cache->host_length;
  3789.       } else if (cache->host_length==0) {  // en cours
  3790.         _hts_lockdns(0);          // dΘlocker
  3791.         return NULL;
  3792.       } else {                    // erreur dans le dns, dΘja vΘrifiΘ
  3793.         if (retour->h_addr_list[0])
  3794.           retour->h_addr_list[0][0]='\0';
  3795.         retour->h_length=0;  // erreur, n'existe pas
  3796.       }
  3797.       _hts_lockdns(0);          // dΘlocker
  3798.       return retour;
  3799.     } else {    // on a pas encore trouvΘ
  3800.       if (cache->n!=NULL) { // chercher encore
  3801.         cache=cache->n;   // suivant!
  3802.       } else {
  3803.         _hts_lockdns(0);          // dΘlocker
  3804.         return NULL;    // non prΘsent        
  3805.       }
  3806.     }    
  3807.   }
  3808. }
  3809.  
  3810. // tester si iadr a dΘja ΘtΘ testΘ (ou en cours de test)
  3811. // 0 non encore
  3812. // 1 ok
  3813. // 2 non prΘsent
  3814. int hts_dnstest(char* _iadr) {
  3815.   char* iadr;
  3816.   t_dnscache* cache=_hts_cache();  // adresse du cache 
  3817.   NOSTATIC_RESERVE(iadr, char, HTS_URLMAXSIZE*2);
  3818.  
  3819.   // sauter user:pass@ Θventuel
  3820.   strcpybuff(iadr,jump_identification(_iadr));
  3821.   // couper Θventuel :
  3822.   {
  3823.     char *a;
  3824.     if ( (a=jump_toport(iadr)) )
  3825.       *a='\0';
  3826.   }
  3827.  
  3828. #if HTS_WIN
  3829.   if (inet_addr(iadr)!=INADDR_NONE)  // numΘrique
  3830. #else
  3831.   if (inet_addr(iadr)!=(in_addr_t) -1 )  // numΘrique
  3832. #endif
  3833.     return 1;
  3834.  
  3835.   while(_hts_lockdns(-1));  // attendre libΘration
  3836.   _hts_lockdns(1);          // locker
  3837.   while(1) {
  3838.     if (strcmp(cache->iadr,iadr)==0) {  // ok trouvΘ
  3839.       _hts_lockdns(0);          // dΘlocker
  3840.       return 1;    // prΘsent!
  3841.     } else {    // on a pas encore trouvΘ
  3842.       if (cache->n!=NULL) { // chercher encore
  3843.         cache=cache->n;   // suivant!
  3844.       } else {
  3845.         _hts_lockdns(0);          // dΘlocker
  3846.         return 2;    // non prΘsent        
  3847.       }
  3848.     }    
  3849.   }
  3850. }
  3851.  
  3852.  
  3853. t_hostent* vxgethostbyname(char* hostname, void* v_buffer) {
  3854.   t_fullhostent* buffer = (t_fullhostent*) v_buffer;
  3855.   /* Clear */
  3856.   fullhostent_init(buffer);
  3857.  
  3858.   /* Protection */
  3859.   if (!strnotempty(hostname)) {
  3860.     return NULL;
  3861.   }
  3862.  
  3863.   /* 
  3864.     Strip [] if any : [3ffe:b80:1234:1::1] 
  3865.     The resolver doesn't seem to handle IP6 addresses in brackets
  3866.   */
  3867.   if ((hostname[0] == '[') && (hostname[strlen(hostname)-1] == ']')) {
  3868.     char tempo[HTS_URLMAXSIZE*2];
  3869.     tempo[0]='\0';
  3870.     strncatbuff(tempo, hostname+1, strlen(hostname)-2);
  3871.     strcpybuff(hostname, tempo);
  3872.   }
  3873.  
  3874.   {
  3875. #if HTS_INET6==0
  3876.   /*
  3877.   ipV4 resolver
  3878.     */
  3879.     t_hostent* hp=gethostbyname(hostname);
  3880.     if (hp!=NULL) {
  3881.       if ( (hp->h_length) && ( ((unsigned int) hp->h_length) <= buffer->addr_maxlen) ) {
  3882.         memcpy(buffer->hp.h_addr_list[0], hp->h_addr_list[0], hp->h_length);
  3883.         buffer->hp.h_length = hp->h_length;
  3884.         return &(buffer->hp);
  3885.       }
  3886.     }
  3887. #else
  3888.     /*
  3889.     ipV6 resolver
  3890.     */
  3891.     /*
  3892.     int error_num=0;
  3893.     t_hostent* hp=getipnodebyname(hostname, AF_INET6, AI_DEFAULT, &error_num);
  3894.     oops, deprecated :(
  3895.     */
  3896.     struct addrinfo* res = NULL;
  3897.     struct addrinfo hints;
  3898.     memset(&hints, 0, sizeof(hints));
  3899.     if (IPV6_resolver == 1)        // V4 only (for bogus V6 entries)
  3900.       hints.ai_family = PF_INET;
  3901.     else if (IPV6_resolver == 2)   // V6 only (for testing V6 only)
  3902.       hints.ai_family = PF_INET6;
  3903.     else                           // V4 + V6
  3904.       hints.ai_family = PF_UNSPEC;
  3905.     hints.ai_socktype = SOCK_STREAM;
  3906.     hints.ai_protocol = IPPROTO_TCP;
  3907.     if (getaddrinfo(hostname, NULL, &hints, &res) == 0) {
  3908.       if (res) {
  3909.         if ( (res->ai_addr) && (res->ai_addrlen) && (res->ai_addrlen <= buffer->addr_maxlen) ) {
  3910.           memcpy(buffer->hp.h_addr_list[0], res->ai_addr, res->ai_addrlen);
  3911.           buffer->hp.h_length = res->ai_addrlen;
  3912.           freeaddrinfo(res);
  3913.           return &(buffer->hp);
  3914.         }
  3915.       }
  3916.     }
  3917.     if (res) {
  3918.       freeaddrinfo(res);
  3919.     }
  3920.     
  3921. #endif
  3922.   }
  3923.   return NULL;
  3924. }
  3925.  
  3926. // cache dns interne α HTS // ** FREE A FAIRE sur la chaine
  3927. t_hostent* hts_gethostbyname(char* _iadr, void* v_buffer) {
  3928.   char iadr[HTS_URLMAXSIZE*2];
  3929.   t_fullhostent* buffer = (t_fullhostent*) v_buffer;
  3930.   t_dnscache* cache=_hts_cache();  // adresse du cache
  3931.   t_hostent* hp;
  3932.  
  3933.   /* Clear */
  3934.   fullhostent_init(buffer);
  3935.  
  3936.   strcpybuff(iadr,jump_identification(_iadr));
  3937.   // couper Θventuel :
  3938.   {
  3939.     char *a;
  3940.     if ( (a=jump_toport(iadr)) )
  3941.       *a='\0';
  3942.   }
  3943.  
  3944.   // effacer structure de retour, crΘer nouvelle
  3945.   /*
  3946.   memset(&host, 0, sizeof(t_hostent));  
  3947.   host.h_addr_list=he;
  3948.   he[0]=NULL;
  3949.   he[1]=NULL;  
  3950.   host.h_length=0;  
  3951.   */
  3952.   cache->iadr[0]='*';
  3953.   cache->iadr[1]='\0';
  3954.   
  3955.   /* get IP from the dns cache */
  3956.   hp = _hts_ghbn(cache, iadr, &buffer->hp);
  3957.   if (hp) {
  3958.     if (hp->h_length>0)
  3959.       return hp;
  3960.     else
  3961.       return NULL;    // entrΘe erronΘe (erreur DNS) dans le DNS
  3962.   } else {  // non prΘsent dans le cache dns, tester
  3963.     t_dnscache* c=cache;
  3964.     while(c->n) c=c->n;    // calculer queue
  3965.     
  3966. #if HTS_WIDE_DEBUG    
  3967.     DEBUG_W("gethostbyname\n");
  3968. #endif      
  3969. #if HDEBUG
  3970.     printf("gethostbyname (not in cache)\n");
  3971. #endif
  3972.     {
  3973.       unsigned long inetaddr;
  3974. #if HTS_WIN
  3975.       if ((inetaddr=inet_addr(iadr))==INADDR_NONE) {
  3976. #else
  3977.       if ((inetaddr=inet_addr(iadr))==(in_addr_t) -1 ) {
  3978. #endif        
  3979. #if DEBUGDNS 
  3980.         printf("resolving (not cached) %s\n",iadr);
  3981. #endif
  3982.         hp=vxgethostbyname(iadr, buffer);  // calculer IP host
  3983.       } else {     // numΘrique, convertir sans passer par le dns
  3984.         buffer->hp.h_addr_list[0]=(char*) &inetaddr;
  3985.         buffer->hp.h_length=4;
  3986.         hp=&buffer->hp;
  3987.       }
  3988.     }
  3989. #if HTS_WIDE_DEBUG    
  3990.     DEBUG_W("gethostbyname done\n");
  3991. #endif
  3992.     cache->n=(t_dnscache*) calloct(1,sizeof(t_dnscache));
  3993.     if (cache->n!=NULL) {
  3994.       strcpybuff(cache->n->iadr,iadr);
  3995.       if (hp!=NULL) {
  3996.         memcpy(cache->n->host_addr, hp->h_addr_list[0], hp->h_length);
  3997.         cache->n->host_length=hp->h_length;
  3998.       } else {
  3999.         cache->n->host_addr[0]='\0';
  4000.         cache->n->host_length=0;  // non existant dans le dns
  4001.       }
  4002.       cache->n->n=NULL;
  4003.       return hp;
  4004.     } else {  // on peut pas noter, mais on peut renvoyer le rΘsultat
  4005.       return hp;
  4006.     }        
  4007.   }  // retour hp du cache
  4008. }
  4009.  
  4010. #else
  4011. HTS_INLINE t_hostent* hts_gethostbyname(char* iadr, t_fullhostent* buffer) {
  4012.   t_hostent* retour;
  4013. #if HTS_WIDE_DEBUG    
  4014.   DEBUG_W("gethostbyname (2)\n");
  4015. #endif
  4016. #if DEBUGDNS 
  4017.     printf("blocking method gethostbyname() in progress for %s\n",iadr);
  4018. #endif
  4019.   retour=vxgethostbyname(jump_identification(iadr), );
  4020. #if HTS_WIDE_DEBUG    
  4021.   DEBUG_W("gethostbyname (2) done\n");
  4022. #endif
  4023.   return retour;
  4024. }
  4025. #endif
  4026.  
  4027.  
  4028. // --- Tracage des mallocs() ---
  4029. #ifdef HTS_TRACE_MALLOC
  4030. //#define htsLocker(A, N) htsLocker(A, N)
  4031. #define htsLocker(A, N) do {} while(0)
  4032. static mlink trmalloc = {NULL,0,0,NULL};
  4033. static int trmalloc_id=0;
  4034. static PTHREAD_LOCK_TYPE* mallocMutex = NULL;
  4035. static void hts_meminit(void) {
  4036.   //if (mallocMutex == NULL) {
  4037.   //  mallocMutex = calloc(sizeof(*mallocMutex), 1);
  4038.   //  htsLocker(mallocMutex, -999);
  4039.   //}
  4040. }
  4041. void* hts_malloc(size_t len) {
  4042.   void* adr;
  4043.   hts_meminit();
  4044.   htsLocker(mallocMutex, 1);
  4045.   fassert(len > 0);
  4046.   adr = hts_xmalloc(len, 0);
  4047.   htsLocker(mallocMutex, 0);
  4048.   return adr;
  4049. }
  4050. void* hts_calloc(size_t len,size_t len2) {
  4051.   void* adr;
  4052.   hts_meminit();
  4053.   fassert(len > 0);
  4054.   fassert(len2 > 0);
  4055.   htsLocker(mallocMutex, 1);
  4056.   adr = hts_xmalloc(len, len2);
  4057.   htsLocker(mallocMutex, 0);
  4058.   memset(adr, 0, len * len2);
  4059.   return adr;
  4060. }
  4061. void* hts_xmalloc(size_t len,size_t len2) {
  4062.   mlink* lnk = (mlink*) calloc(1,sizeof(mlink));
  4063.   fassert(lnk != NULL);
  4064.   fassert(len > 0);
  4065.   fassert(len2 >= 0);
  4066.   if (lnk) {
  4067.     void*  r   = NULL;
  4068.     int size, bsize = sizeof(t_htsboundary);
  4069.     if (len2)
  4070.       size = len * len2;
  4071.     else
  4072.       size = len;
  4073.     size += ((bsize - (size % bsize)) % bsize);  /* check alignement */
  4074.     r = malloc(size + bsize*2);
  4075.     fassert(r != NULL);
  4076.     if (r) {
  4077.       * ( (t_htsboundary*) ((char*) r ) ) 
  4078.         = * ( (t_htsboundary*) ( (char*) r + size + bsize ) )
  4079.         = htsboundary;
  4080.       ((char*) r) += bsize;    /* boundary */
  4081.       lnk->adr = r;
  4082.       lnk->len = size;
  4083.       lnk->id = trmalloc_id++;
  4084.       lnk->next = trmalloc.next;
  4085.       trmalloc.next = lnk;
  4086.       return r;
  4087.     } else {
  4088.       free(lnk);
  4089.     }
  4090.   }
  4091.   return NULL;
  4092. }
  4093. void hts_free(void* adr) {
  4094.   mlink* lnk = &trmalloc;
  4095.   int bsize = sizeof(t_htsboundary);
  4096.   fassert(adr != NULL);
  4097.   if (!adr) {
  4098.     return;
  4099.   }
  4100.   htsLocker(mallocMutex, 1);
  4101.   while(lnk->next != NULL) {
  4102.     if (lnk->next->adr == adr) {
  4103.       mlink* blk_free=lnk->next;
  4104.       fassert(blk_free->id != -1);
  4105.       fassert( * ( (t_htsboundary*) ( (char*) adr - bsize ) ) == htsboundary );
  4106.       fassert( * ( (t_htsboundary*) ( (char*) adr + blk_free->len ) ) == htsboundary );
  4107.       lnk->next=lnk->next->next;
  4108.       free((void*) blk_free);
  4109.       //blk_free->id=-1;
  4110.       free((char*) adr - bsize);
  4111.       htsLocker(mallocMutex, 0);
  4112.       return;
  4113.     }
  4114.     lnk = lnk->next;
  4115.     fassert(lnk->next != NULL);
  4116.   }
  4117.   free(adr);
  4118.   htsLocker(mallocMutex, 0);
  4119. }
  4120. void* hts_realloc(void* adr,size_t len) {
  4121.   int bsize = sizeof(t_htsboundary);
  4122.   len += ((bsize - (len % bsize)) % bsize);  /* check alignement */
  4123.   if (adr != NULL) {
  4124.     mlink* lnk = &trmalloc;
  4125.     htsLocker(mallocMutex, 1);
  4126.     while(lnk->next != NULL)  {
  4127.       if (lnk->next->adr==adr) {
  4128.         {
  4129.           mlink* blk_free=lnk->next;
  4130.           fassert(blk_free->id != -1);
  4131.           fassert( * ( (t_htsboundary*) ( (char*) adr - bsize ) ) == htsboundary );
  4132.           fassert( * ( (t_htsboundary*) ( (char*) adr + blk_free->len ) ) == htsboundary );
  4133.         }
  4134.         adr = realloc((char*) adr - bsize, len + bsize * 2);
  4135.         fassert(adr != NULL);
  4136.         lnk->next->adr = (char*) adr + bsize;
  4137.         lnk->next->len = len;
  4138.         * ( (t_htsboundary*) ( (char*) adr ) ) 
  4139.           = * ( (t_htsboundary*) ( (char*) adr + len + bsize) ) 
  4140.           = htsboundary;
  4141.         htsLocker(mallocMutex, 0);
  4142.         return (char*) adr + bsize;
  4143.       }
  4144.       lnk = lnk->next;
  4145.       fassert(lnk->next != NULL);
  4146.     }
  4147.     htsLocker(mallocMutex, 0);
  4148.   }
  4149.   return hts_malloc(len);
  4150. }
  4151. mlink* hts_find(char* adr) {
  4152.   char* stkframe = (char*) &stkframe;
  4153.   mlink* lnk = &trmalloc;
  4154.   int bsize = sizeof(t_htsboundary);
  4155.   fassert(adr != NULL);
  4156.   if (!adr) {
  4157.     return NULL;
  4158.   }
  4159.   htsLocker(mallocMutex, 1);
  4160.   while(lnk->next != NULL) {
  4161.     if (adr >= lnk->next->adr && adr <= lnk->next->adr + lnk->next->len) {   /* found */
  4162.       htsLocker(mallocMutex, 0);
  4163.       return lnk->next;
  4164.     }
  4165.     lnk = lnk->next;
  4166.   }
  4167.   htsLocker(mallocMutex, 0);
  4168.   {
  4169.     int depl = (int) (adr - stkframe);
  4170.     if (depl < 0) depl = -depl;
  4171.     //fassert(depl < 512000);   /* near the stack frame.. doesn't look like malloc but stack variable */
  4172.     return NULL;
  4173.   }
  4174. }
  4175. // check the malloct() and calloct() trace stack
  4176. void  hts_freeall(void) {
  4177.   int bsize = sizeof(t_htsboundary);
  4178.   while(trmalloc.next) {
  4179. #if MEMDEBUG
  4180.     printf("* block %d\t not released: at %d\t (%d\t bytes)\n",trmalloc.next->id,trmalloc.next->adr,trmalloc.next->len);
  4181. #endif
  4182.     if (trmalloc.next->id != -1) {
  4183.       free((char*) trmalloc.next->adr - bsize);
  4184.     }
  4185.   }
  4186. }
  4187. #endif
  4188.  
  4189.  
  4190. // -- divers //
  4191.  
  4192. // cut path and project name
  4193. // patch also initial path
  4194. void cut_path(char* fullpath,char* path,char* pname) {
  4195.   path[0]=pname[0]='\0';
  4196.   if (strnotempty(fullpath)) {
  4197.     if ((fullpath[strlen(fullpath)-1]=='/') || (fullpath[strlen(fullpath)-1]=='\\'))
  4198.       fullpath[strlen(fullpath)-1]='\0';
  4199.     if (strlen(fullpath)>1) {
  4200.       char* a;
  4201.       while( (a=strchr(fullpath,'\\')) ) *a='/';     // remplacer par /
  4202.       a=fullpath+strlen(fullpath)-2;
  4203.       while( (*a!='/') && ( a > fullpath)) a--;
  4204.       if (*a=='/') a++;
  4205.       strcpybuff(pname,a);
  4206.       strncatbuff(path,fullpath,(int) (a - fullpath));
  4207.     }
  4208.   }
  4209. }
  4210.  
  4211.  
  4212.  
  4213. // -- Gestion protocole ftp --
  4214.  
  4215. #if HTS_WIN
  4216. int ftp_available(void) {
  4217.   return 1;
  4218. }
  4219. #else
  4220. int ftp_available(void) {
  4221.   return 1;   // ok!
  4222.   //return 0;   // SOUS UNIX, PROBLEMES
  4223. }
  4224. #endif
  4225.  
  4226.  
  4227.  
  4228. HTSEXT_API int hts_init(void) {
  4229.   static int hts_init_ok = 0;
  4230.  
  4231.   /* Ensure external modules are loaded */
  4232.   htspe_init();
  4233.  
  4234.   if (!hts_init_ok) {
  4235.     hts_init_ok = 1;
  4236.     // default wrappers
  4237.     htswrap_init();
  4238.     htswrap_add("init",htsdefault_init);
  4239.     htswrap_add("free",htsdefault_uninit);
  4240.     htswrap_add("start",htsdefault_start);
  4241.     htswrap_add("change-options",htsdefault_chopt);
  4242.     htswrap_add("end",htsdefault_end);
  4243.     htswrap_add("check-html",htsdefault_checkhtml);
  4244.     htswrap_add("loop",htsdefault_loop);
  4245.     htswrap_add("query",htsdefault_query);
  4246.     htswrap_add("query2",htsdefault_query2);
  4247.     htswrap_add("query3",htsdefault_query3);
  4248.     htswrap_add("check-link",htsdefault_check);
  4249.     htswrap_add("pause",htsdefault_pause);
  4250.     htswrap_add("save-file",htsdefault_filesave);
  4251.     htswrap_add("link-detected",htsdefault_linkdetected);
  4252.     htswrap_add("transfer-status",htsdefault_xfrstatus);
  4253.     htswrap_add("save-name",htsdefault_savename);
  4254.   }
  4255.   
  4256. #if HTS_USEOPENSSL
  4257.   /*
  4258.   Initialize the OpensSSL library
  4259.   */
  4260.   if (!openssl_ctx && SSL_is_available) {
  4261.     if (SSL_load_error_strings) SSL_load_error_strings();
  4262.     SSL_library_init();
  4263.     ///if (SSL_load_error_strings)  SSL_load_error_strings();
  4264.     //if (ERR_load_crypto_strings) ERR_load_crypto_strings();
  4265.     // if (ERR_load_SSL_strings)    ERR_load_SSL_strings(); ???!!!
  4266.     // OpenSSL_add_all_algorithms();
  4267.     openssl_ctx = SSL_CTX_new(SSLv23_client_method());
  4268.     if (!openssl_ctx) {
  4269.       fprintf(stderr, "fatal: unable to initialize TLS: SSL_CTX_new(SSLv23_client_method)\n");
  4270.       abortLog("unable to initialize TLS: SSL_CTX_new(SSLv23_client_method)");
  4271.       abort();
  4272.     }
  4273.   }
  4274. #endif
  4275.   
  4276.   /* Init vars and thread-specific values */
  4277.   hts_initvar();
  4278.   
  4279.   /* initialiser structcheck */
  4280.   structcheck_init(1);
  4281.  
  4282.   return 1;
  4283. }
  4284. HTSEXT_API int hts_uninit(void) {
  4285.   hts_freevar();
  4286.   /* htswrap_free(); */
  4287.   return 1;
  4288. }
  4289.  
  4290. // defaut wrappers
  4291. void __cdecl htsdefault_init(void) {
  4292. }
  4293. void __cdecl htsdefault_uninit(void) {
  4294.   hts_freevar();
  4295. }
  4296. int __cdecl htsdefault_start(void* opt) {
  4297.   return 1; 
  4298. }
  4299. int __cdecl htsdefault_chopt(void* opt) {
  4300.   return 1;
  4301. }
  4302. int  __cdecl htsdefault_end(void) { 
  4303.   return 1; 
  4304. }
  4305. int __cdecl htsdefault_checkhtml(char* html,int len,char* url_adresse,char* url_fichier) {
  4306.   return 1;
  4307. }
  4308. int __cdecl htsdefault_loop(void* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time,hts_stat_struct* stats) {    // appelΘ α chaque boucle de HTTrack
  4309.   return 1;
  4310. }
  4311. char* __cdecl htsdefault_query(char* question) {
  4312.   return "";
  4313. }
  4314. char* __cdecl htsdefault_query2(char* question) {
  4315.   return "";
  4316. }
  4317. char* __cdecl htsdefault_query3(char* question) {
  4318.   return "";
  4319. }
  4320. int __cdecl htsdefault_check(char* adr,char* fil,int status) {
  4321.   return -1;
  4322. }
  4323. void __cdecl htsdefault_pause(char* lockfile) {
  4324.   while (fexist(lockfile)) {
  4325.     Sleep(1000);
  4326.   }
  4327. }
  4328. void __cdecl htsdefault_filesave(char* file) {
  4329. }
  4330. int __cdecl htsdefault_linkdetected(char* link) {
  4331.   return 1;
  4332. }
  4333. int __cdecl htsdefault_xfrstatus(void* back) {
  4334.   return 1;
  4335. }
  4336. int __cdecl htsdefault_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save) {
  4337.   return 1;
  4338. }
  4339. // end defaut wrappers
  4340.  
  4341.  
  4342.  
  4343. // Fin
  4344.  
  4345.